/* Minification failed. Returning unminified contents.
(1678,1): run-time error CSS1019: Unexpected token, found '}'
 */
html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    background-color: #fff;
}

body {
    margin: 0;
    padding: 115px 0 0 0;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
}

a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
    background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Alegreya Sans SC', sans-serif;
    font-weight: 500;
}

.assc {
    font-family: 'Alegreya Sans SC', sans-serif;
}

.page-title {
    font-size: 4.2rem;
    line-height: 1em;
}

.extra-padded {
    padding-left: 40px;
    padding-right: 40px;
}

img.img-responsive {
    display: block;
    max-width: 100%;
}
/*#region header */
header {
    position: relative;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0 6px 0 #f2f1f0;
    transition: all ease-out 0.4s;
}

    header.scrolled {
        /*transform: translateY(calc(-100% + 10px));*/
        box-shadow: 0 0 6px 0 #9a9a9a;
    }

    header:hover {
        transform: translateY(0);
    }

.header-row {
    display: flex;
    align-items: flex-end;
    padding-top: 15px;
    padding-bottom: 10px;
    position: relative;
}

.logo {
    padding: 0 10px 0 40px;
    display: block;
    text-decoration: none;
}


    .logo img {
        display: block;
        width: 70px;
        height: auto;
    }

.tagline {
    font-size: 1.4rem;
    margin-top: 10px;
    line-height: 0.65em;
    white-space: nowrap;
    text-decoration: none;
    color: #000;
}

.nav-toggle {
    display: none;
}

nav {
    padding: 0 15px;
    flex-grow: 1;
    font-size: 1.6rem;
    text-align: right;
    position: relative;
    margin-bottom: -3px;
}

    nav .seperate-nav-items {
        margin-bottom: 20px;
    }

    nav .main-nav-item {
        display: inline-block;
        padding: 0 0px;
        text-align: left;
        position: relative;
    }

.main-nav-item .main-nav-title {
    padding: 10px 15px;
    padding: 5px 15px;
    display: block;
}

    .main-nav-item .main-nav-title.active {
        font-weight: bold;
    }

nav a {
    text-decoration: none;
    color: #000;
}

    nav a.active {
        font-weight: bold;
    }

.nav-drop-one {
    top: 28px;
    position: absolute;
    left: 0;
    background-color: #fff;
    padding: 0px 0;
    max-height: 80vh;
    overflow-y: auto;
    display: none;
    box-shadow: 0 2px 2px 0 #f2f1f0;
    z-index: 1;
}

    .nav-drop-one.columns-two {
        width: 400px;
        flex-wrap: wrap;
    }

        .nav-drop-one.columns-two a {
            width: 50%;
        }

    .nav-drop-one a {
        padding: 10px 15px;
        text-align: left;
        white-space: nowrap;
        display: block;
    }

        .nav-drop-one a:hover {
            background-color: #f2f1f0;
        }

.main-nav-item:hover .nav-drop-one {
    display: block;
    animation: NavDropOneShow 0.25s ease;
}

@keyframes NavDropOneShow {
    from {
        transform: translateY(-10px);
        opacity: 0.5;
    }
}

.main-nav-item:hover .nav-drop-one.columns-two {
    display: flex;
}

.main-nav-item:hover .main-nav-title {
    background-color: #f2f1f0;
}

.nav-drop-title {
    display: block;
    padding: 10px 15px;
    font-weight: 600;
    white-space: nowrap;
}

    .nav-drop-title.active {
        font-weight: bold;
    }

.nav-drop-one .cols {
    display: flex;
}

/*#endregion header*/
/*#region footer */

.footer-row {
    display: flex;
    align-items: center;
    background-color: #f2f1f0;
    flex-wrap: wrap;
}

    .footer-row .col {
        width: 50%;
    }

    .footer-row .map {
        height: 350px;
    }

        .footer-row .map iframe {
            height: 100%;
            width: 100%;
        }

address {
    font-style: normal;
    padding-left: 90px;
}

    address .title {
        font-size: 4.0rem;
        line-height: normal;
    }

    address p {
        margin: 20px 0;
        line-height: 32px;
    }

    address a {
        color: inherit;
    }

    address img {
        vertical-align: baseline;
        margin-right: 10px;
    }

.copyright {
    font-size: 1.8rem;
    color: #fff;
    background-color: rgba(247, 148, 29, 0.95);
    padding: 30px;
    margin: 0;
}

.pipe {
    margin: 0 10px;
}

.copyright a {
    text-decoration: underline;
    color: #fff;
}

.back-to-top {
    display: none;
    position: fixed;
    z-index: 10;
    right: 20px;
    bottom: 15px;
    border: none;
    background-color: #fff;
    color: #000;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}
/*#endregion footer */
/*#region general */
.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.background-blue {
    background-color: #0054a6;
}

.background-white {
    background-color: #fff;
}

.background-red {
    background-color: #ed3239;
}

.background-yellow {
    background-color: #ffd800;
}

.background-purple {
    background-color: #662d91;
}

.background-green {
    background-color: #9fc929;
}



/*#endregion general */
/*#region layout */

.body-wrapper {
    margin: auto;
    max-width: 1200px;
}

.content-wrapper {
    margin: auto;
    max-width: 1200px;
    padding: 0 10px;
}

.hero {
}

    .hero .hero-image {
        display: block;
        max-width: 100%;
        margin: auto;
    }

.section-row {
    display: flex;
    flex-wrap: wrap;
}

    .section-row .col {
        width: 50%;
        padding: 50px;
    }

    .section-row.less-gap .col {
        padding: 20px 50px;
    }

    .section-row .col .image img {
        width: 100%;
        background-color: #f2f1f0;
    }

    .section-row h1 {
        margin-top: 0;
    }

.divider {
    background-color: #ed3239;
    padding: 30px 0;
}

    .divider h2 {
        font-size: 4.0rem;
        padding: 0 50px;
        margin: 0;
        color: #fff;
    }

.section-row .text h3 {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: 4.0rem;
}

.section-row .text ul, .section-row .text ol {
    padding: 0 0 0 0;
    list-style-position: inside;
}

.section-row .text li {
    margin: 0.2em 0;
}

.section-row .text {
}
/*#endregion layout*/
/*#region home gallery */
.home-gallery {
    position: relative;
    height: 700px;
    overflow: hidden;
}

    .home-gallery .slides {
        position: relative;
        height: 100%;
    }

    .home-gallery .slide {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        background-position: center center;
        opacity: 0;
        background-color: #fff;
        transition: all ease 1s;
    }

        .home-gallery .slide img {
            display: none;
        }

        .home-gallery .slide.active {
            z-index: 2;
            opacity: 1;
        }

    .home-gallery .block {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .home-gallery .content {
        background-color: rgba(247, 148, 29, 0.95);
        margin-left: auto;
        margin-right: 40px;
        margin-top: 100px;
        margin-bottom: 100px;
        width: 500px;
        color: #fff;
        min-height: 500px;
        padding: 40px;
        font-size: 4.2rem;
        font-weight: 500;
    }


/*#endregion home gallery */
/*#region home blocks */
.home-blocks {
}

    .home-blocks article {
        background-position: center center;
        background-size: auto 100%;
    }

    .home-blocks .packaging-machines {
        background-image: url(/Images/Packaging_Machines.jpg);
    }

    .home-blocks .contract-manufacturing {
/*        background-image: url(/Images/Contract_Manufacturing.jpg); */
background-color:#e1e1e1;
    }

    .home-blocks .gumbase {
        background-image: url(/Images/Gumbase.jpg);
    }

    .home-blocks .used-machines {
        background-image: url(/Images/Used_Machines.jpg);
    }

    .home-blocks .row {
        display: flex;
        flex-wrap: wrap;
    }

        .home-blocks .row .col {
            width: 50%;
            padding: 80px 0;
        }

    .home-blocks .square {
        margin: 0 40px;
        padding: 80px 40px 160px 40px;
        min-height: 500px;
        position: relative;
    }

        .home-blocks .square.blue {
            background-color: #0054a6;
        }

    .home-blocks h1 {
        font-size: 4.0rem;
        margin: 0 0 20px 0;
        line-height: 32px;
    }

    .home-blocks .btn-link {
        display: block;
        text-decoration: none;
        white-space: nowrap;
        text-align: center;
        padding: 10px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 40px;
        bottom: 80px;
    }


/*#endregion home blocks*/
/*#region client list */

.clients {
    padding: 75px 0;
}

    .clients h1 {
        margin: 0;
        font-weight: 400;
    }

    .clients .client-list {
        padding: 10px 0;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
    }

        .clients .client-list:before {
            content: '';
            position: absolute;
            bottom: 0;
            width: 40px;
            left: 0;
            top: 0;
            background-image: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
            z-index: 1;
        }

        .clients .client-list:after {
            content: '';
            position: absolute;
            bottom: 0;
            width: 40px;
            right: 0;
            top: 0;
            background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
            z-index: 1;
        }

        .clients .client-list ul {
            padding: 0;
            margin: 0;
            list-style: none;
            display: flex;
            position: relative;
            animation-name: ClientList;
            animation-timing-function: ease;
            animation-iteration-count: infinite;
            animation-name: ClientListNew;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .clients .client-list:hover ul {
            animation-play-state: paused;
        }

@keyframes ClientList {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(0);
    }

    45% {
        transform: translateX(-250%);
    }

    55% {
        transform: translateX(-250%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes ClientListNew {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-300%);
    }
}

.clients .client-list ul li {
    flex-shrink: 0;
    flex-grow: 0;
    width: 200px;
    padding: 0px;
}

    .clients .client-list ul li img {
        max-width: 100%;
        display: block;
        margin: auto;
    }

.clients .client-list .control {
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.4rem;
    background-color: transparent;
    font-weight: 200;
    text-align: center;
}

    .clients .client-list .control:disabled {
        opacity: 0.5;
    }

    .clients .client-list .control.prev {
        left: -40px;
    }

    .clients .client-list .control.next {
        right: -40px;
    }
/*#endregion client list */
/*#region contract manufacturing */
.contract-manufacturing-items {
    display: block;
    margin-bottom: 50px;
}

    .contract-manufacturing-items .images {
        display: flex;
        flex-wrap: wrap;
    }

        .contract-manufacturing-items .images .image {
            padding: 25px 12px;
            width: 50%;
        }

    .contract-manufacturing-items .image img {
        display: block;
        max-width: 100%;
    }

.contract-manufacturing-sections {
}

    .contract-manufacturing-sections article {
        display: flex;
        margin-bottom: 100px;
        align-items: center;
        flex-wrap: nowrap;
    }

        .contract-manufacturing-sections article .contract-manufacturing-company {
            width: 50%;
            flex-shrink: 0;
        }

            .contract-manufacturing-sections article .contract-manufacturing-company img {
                display: block;
                max-width: 100%;
                margin: auto;
            }

        .contract-manufacturing-sections article .images-gallery {
            display: block;
            position: relative;
            width: 100%;
        }

            .contract-manufacturing-sections article .images-gallery .image {
                display: flex;
                align-items: center;
                max-width: 100%;
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                background-color: #fff;
                bottom: 0;
                opacity: 0;
                transition: opacity linear 1s;
                z-index: 0;
            }

                .contract-manufacturing-sections article .images-gallery .image.active {
                    opacity: 1;
                    z-index: 1;
                }

                .contract-manufacturing-sections article .images-gallery .image:first-child {
                    position: relative;
                }

            .contract-manufacturing-sections article .images-gallery img {
                display: block;
                max-width: 100%;
                margin: auto;
            }


/*#endregion contract manufacturing*/
/*#region page news */
.page-news {
    min-height: 50vh;
}

    .page-news .news-posts {
    }

        .page-news .news-posts article {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

            .page-news .news-posts article .image {
                width: 30%;
            }

                .page-news .news-posts article .image img {
                    max-width: 100%;
                }

            .page-news .news-posts article .content {
                width: 70%;
                padding: 20px;
            }

            .page-news .news-posts article h2 {
                margin-top: 0;
            }

                .page-news .news-posts article h2 a {
                    color: inherit;
                    text-decoration: none;
                }

                    .page-news .news-posts article h2 a:hover {
                        text-decoration: underline;
                    }


.page-news-post {
}

    .page-news-post article {
    }

        .page-news-post article img {
            max-width: 100%;
        }

.page-news-post {
}

.page-news-post {
}

.page-news-post {
}

.page-news-post {
}

/*#endregion page news*/
/*#region page about */
.chairman-message {
}

    .chairman-message img {
        display: block;
        max-width: 100%;
    }

.timeline {
    position: relative;
    /*border-top: 2px solid #b2b2b2;
    border-bottom: 2px solid #b2b2b2;*/
}

    .timeline:after {
        position: absolute;
        z-index: 1;
        content: '';
        width: 2px;
        background-color: #b2b2b2;
        top: 0;
        bottom: 0;
        left: 50%;
        left: calc(50% - 1px);
    }

.timeline-item.map-item {
    margin: 40px 0;
    background-color: #ffd800;
    background-image: url(/Images/MA_About-Us_World-map.png);
    background-position: right center;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-item-row {
    display: flex;
}

    .timeline-item-row.reverse {
        flex-direction: row-reverse;
    }

    .timeline-item-row .col {
        width: 50%;
        padding: 40px;
    }

.color-box.branch-line:before {
    content: '';
    position: absolute;
    width: 40px;
    right: -40px;
    top: 40px;
    height: 2px;
    background-color: #b2b2b2;
}

.reverse .color-box.branch-line:before {
    right: initial;
    left: -40px;
}

.timeline-item-row .color-box {
    padding: 75px 40px;
    min-height: 100%;
    position: relative;
}

    .timeline-item-row .color-box.no-min-height {
        min-height: initial;
    }

    .timeline-item-row .color-box h2 {
        margin-top: 0;
        font-family: 'Alegreya Sans SC', sans-serif;
    }

    .timeline-item-row .color-box p:last-child {
        margin-bottom: 0;
    }

    .timeline-item-row .color-box.color-box-blue {
        background-color: #0054a6;
        color: #fff;
    }

    .timeline-item-row .color-box.color-box-yellow {
        background-color: #ffd800;
        color: #000;
    }

    .timeline-item-row .color-box.color-box-red {
        background-color: #ed3239;
        color: #fff;
    }

    .timeline-item-row .color-box.color-box-transparent {
        background-color: #ed3239;
        color: #fff;
    }

    .timeline-item-row .color-box.color-box-green {
        background-color: #9fc929;
        color: #000;
    }

    .timeline-item-row .color-box.color-box-purple {
        background-color: #662d91;
        color: #fff;
    }

    .timeline-item-row .color-box.color-box-orange {
        background-color: rgba(247, 148, 29, 1);
        color: #000;
    }

.timeline-item-row .image {
    padding: 0;
}

    .timeline-item-row .image img {
        display: block;
        max-width: 100%;
        margin-bottom: 4px;
    }

.timeline p img {
    display: block;
    max-width: 100%;
}

.board {
    padding: 40px 0;
}

    .board ul {
        list-style: none;
        flex-wrap: wrap;
        margin: 0 -20px;
    }

    .board li {
        width: 100%;
        padding: 20px;
    }

        .board li img {
            display: block;
            max-width: 100%;
            background-color: #f2f1f0;
        }

    .board h3 {
        margin: 10px 0 0 0;
    }

    .board li p {
        margin: 0;
    }

.community-services {
}

    .community-services ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px;
    }

    .community-services li {
        width: 100%;
        padding: 10px;
        display: flex;
        margin-bottom: 20px;
        align-items: center;
    }

        .community-services li:nth-child(even) {
            flex-direction: row-reverse;
        }

        .community-services li .image {
            width: 50%;
            padding: 10px;
        }

        .community-services li .text {
            width: 50%;
            padding: 10px;
        }

    .community-services img {
        display: block;
        max-width: 100%;
        background-color: #f2f1f0;
    }

    .community-services li h3 {
        margin: 0px 0;
    }

    .community-services li p {
        margin: 0;
    }

.gallery {
    background-color: #f2f1f0;
    padding: 40px 0;
    min-height: 50vh;
}

    .gallery ul {
        display: flex;
        list-style: none;
        padding: 0 30px;
        flex-wrap: wrap;
        margin: 0;
    }

        .gallery ul li {
            width: 25%;
            padding: 20px;
        }

            .gallery ul li a {
                display: block;
                text-decoration: none;
                color: inherit;
            }

                .gallery ul li a img {
                    display: block;
                    max-width: 100%;
                }

                .gallery ul li a .video-thumb {
                    position: relative;
                }

                    .gallery ul li a .video-thumb:after {
                        content: '';
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 0;
                        bottom: 0;
                        background-color: rgba(0,0,0,0.5);
                        background-image: url(/Images/Assets/play.svg);
                        background-size: 20px auto;
                        background-position: center;
                        background-repeat: no-repeat;
                    }


                .gallery ul li a video {
                    display: block;
                    max-width: 100%;
                    position: relative;
                    margin:auto;
                }





            .gallery ul li h4 {
                margin: 10px 0;
            }

.gallery-lightbox {
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 12;
    display: none;
}

    .gallery-lightbox .image-holder {
        position: relative;
        max-width: 1200px;
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
        /*padding: 10px;*/
        margin: auto;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

        .gallery-lightbox .image-holder img {
            display: block;
            max-width: 100%;
            margin: auto;
            max-height: 100%;
            background-color: #fff;
            border: 10px solid #fff;
        }

        .gallery-lightbox .image-holder img {
            display: block;
            max-width: 100%;
            margin: auto;
            max-height: 100%;
            background-color: #fff;
            border: 10px solid #fff;
        }

            .gallery-lightbox .image-holder   video {
                display: block;
                max-width: 100%;
            }

    .gallery-lightbox .close {
        position: absolute;
        top: 12px;
        right: 12px;
        border: 2px solid transparent;
        background-color: transparent;
        outline: none;
        background-image: url(/Images/Assets/times.svg);
        background-position: center;
        width: 36px;
        height: 36px;
        background-size: 50%;
    }

        .gallery-lightbox .close:hover {
            border-color: #fff;
        }

.locations {
    padding: 40px 0;
}



    .locations ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin: 20px -10px;
    }

    .locations li {
        width: 100%;
        padding: 10px;
        display: flex;
        margin: 0 0 20px 0;
        flex-wrap: wrap;
        align-items: center;
    }

        .locations li:nth-child(even) {
            flex-direction: row-reverse;
        }

        .locations li .image {
            width: 50%;
        }

        .locations li img {
            max-width: 100%;
            display: block;
            height: auto;
            margin-bottom: 20px;
        }

        .locations li .text {
            width: 50%;
        }

.page-about section {
    padding: 40px 0;
}

    .page-about section h2.about-section-title {
        padding: 0 40px;
        margin: 0;
    }
/*#endregion page about*/
/*#region used machines */
.used-machines-list article {
    margin-bottom: 30px;
}

    .used-machines-list article h1 {
        padding: 10px 50px 10px 10px;
        border: 1px solid #f5f5f5;
        margin: 0;
    }

    .used-machines-list article.expands h1 {
        background-image: url(/Images/Assets/chevron-down.svg);
        background-position: right center;
        background-position: calc(100% - 20px) center;
        background-size: 20px auto;
        cursor: pointer;
    }

    .used-machines-list article .text {
        display: none;
        padding: 10px 20px;
        margin: 0;
        border: 1px solid #f5f5f5;
        box-shadow: 0 4px 4px #f5f5f5;
    }

        .used-machines-list article .text img {
            display: block;
            max-width: 100%;
        }

.used-machines-list .section-row .col {
    padding: 10px;
}

.used-machines-images {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 20px -20px;
}

    .used-machines-images li {
        width: 50%;
        padding: 20px;
    }

        .used-machines-images li img {
            display: block;
            max-width: 100%;
        }

/*#endregion used machines*/
/*#region event ticker */
.event-ticker {
    background-color: #f2f1f0;
}

    .event-ticker.show .title {
        background-color: rgba(247, 148, 29, 0.95);
    }

    .event-ticker .title {
        text-align: center;
        cursor: pointer;
        padding: 10px;
    }

        .event-ticker .title:hover {
            background-color: rgba(247, 148, 29, 0.95);
        }

        .event-ticker .title span {
            display: inline-block;
        }

        .event-ticker .title .icon {
            width: 14px;
            vertical-align: baseline;
            margin-left: 4px;
        }

    .event-ticker .event-body {
        padding: 20px 40px;
        display: none;
    }

    .event-ticker p {
        margin: 0;
    }

/*#endregion event ticker */

@media only screen and (max-width :960px) {
    body {
        padding-top: 106px;
    }

    header.mobile-nav-show {
        bottom: 0;
    }

    header.scrolled {
        transform: none;
    }

    .header-row {
        align-items: center;
        padding: 10px 0;
    }

    nav {
        position: fixed;
        top: 106px;
        left: 0;
        right: 0;
        height: 0;
        z-index: 11;
        overflow: hidden;
        background-color: #f2f1f0;
        padding: 0;
        display: flex;
        flex-direction: column;
        /*flex-direction: column-reverse;*/
        transition: all ease 0.4s;
    }

        nav a {
            display: block;
        }

    header.mobile-nav-show nav {
        height: calc( 100% - 106px);
        overflow: auto;
    }



    nav .main-nav-item {
        display: block;
        background-color: #f2f1f0;
        padding: 10px 0;
    }

    nav .seperate-nav-items {
        margin-bottom: 0;
        order: 1;
    }

    .nav-drop-one {
        position: static;
        box-shadow: none;
        width: auto;
        display: block;
        max-height: none;
        margin: 10px;
        padding: 10px;
    }

        .nav-drop-one.columns-two {
            display: flex;
            flex-wrap: wrap;
            column-count: 1;
            width: auto;
        }

        .nav-drop-one .cols .col {
            width: 50%;
        }

        .nav-drop-one a {
            padding: 10px 10px;
            width: 50%;
        }

    .nav-drop-title {
        padding: 10px;
    }

    .nav-toggle {
        display: block;
        padding: 20px;
        background-color: transparent;
        border: none;
        outline: none;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 11;
    }

        .nav-toggle span {
            display: block;
            height: 2px;
            background-color: #000000;
            margin: 3px 0;
            width: 30px;
        }

    @keyframes NavDropOneShow {
        from {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .logo {
        padding: 0 20px;
        flex-grow: 1;
    }

        .logo img {
            width: 60px;
        }

    .tagline {
        font-size: 1.4rem;
    }

    .home-gallery {
        height: auto;
    }

        .home-gallery .slide:first-child {
            position: relative;
        }

        .home-gallery .slide {
            background-image: none !important;
        }

            .home-gallery .slide img {
                display: block;
                margin: auto;
                max-width: 100%;
            }

        .home-gallery .content {
            width: auto;
            height: auto;
            margin: 0;
            min-height: 0;
            padding: 20px;
            font-size: 2.4rem;
        }

        .home-gallery .content-wrapper {
            padding: 0;
        }

    .footer-row {
        flex-wrap: wrap;
    }

        .footer-row .col {
            width: 100%;
        }

    address {
        padding: 20px;
    }

    .copyright {
        padding: 10px 20px;
    }

    .content-wrapper {
        padding: 0 20px;
    }

    .section-row {
        flex-wrap: wrap;
    }

        .section-row .col {
            width: 100%;
            padding: 0;
        }

            .section-row .col .text {
                padding: 20px 20px 0px 20px;
            }

                .section-row .col .text .text {
                    padding-left: 0;
                }

                .section-row .col .text
                h1 {
                    padding-left: 0;
                }

        .section-row h1 {
            margin: 0;
            padding: 10px 20px;
        }

    .page-title.extra-padded {
        padding: 20px 0;
    }

    .divider h2 {
        padding: 0 20px;
    }

    .home-blocks .row .col {
        padding: 0px 0;
        width: 100%;
    }

    .home-blocks .content-wrapper {
        padding: 0;
    }

    .home-blocks .square {
        margin: 0;
        padding: 40px 20px;
        min-height: 0;
    }

    .home-blocks .btn-link {
        margin: 0;
        position: static;
    }

    .home-blocks .processing-line .row {
        flex-direction: column-reverse;
    }

    .home-blocks .packaging-machines, .home-blocks .contract-manufacturing {
        background-image: none;
    }

    .home-blocks .col.mobile-background {
        height: 66vw;
    }

    .home-blocks .packaging-machines .col.mobile-background {
        background-image: url(/Images/Packaging_Machines.jpg);
        background-size: auto 100%;
    }

    .home-blocks .contract-manufacturing .row {
        flex-direction: column-reverse;
    }

    .home-blocks .contract-manufacturing .col.mobile-background {
       /* background-image: url(/Images/Contract_Manufacturing.jpg); */
        background-size: auto 100%;
        background-position: right top;
height:0;
    }

    .home-blocks .gumbase .col.mobile-background {
        background-image: url(/Images/Gumbase.jpg);
        background-size: auto 100%;
        background-position: left top;
    }

    .home-blocks .used-machines .row {
        flex-direction: column-reverse;
    }

    .timeline {
        font-size: 1.6rem;
    }

        .timeline:after {
            left: 10px;
        }

        .timeline .content-wrapper {
            padding: 0;
        }

    .timeline-item-row {
        flex-wrap: wrap;
    }

    .timeline .timeline-item {
        padding: 20px 0;
        padding-left: 20px;
    }

    .timeline-item-row .col {
        padding: 10px;
        width: 100%;
    }

    .timeline-item-row .color-box {
        padding: 20px 20px;
    }

    .reverse .color-box.branch-line:before {
        left: -20px;
    }

    .color-box.branch-line:before {
        right: unset;
        left: -20px;
        width: 20px;
    }

    .page-news .news-posts article {
        flex-wrap: wrap;
    }

        .page-news .news-posts article .image {
            width: 100%;
        }

        .page-news .news-posts article .content {
            width: 100%;
            padding: 0;
        }

    .contract-manufacturing-sections {
        padding: 20px;
    }

    .chairman-message {
        padding-top: 10px !important;
    }

    .page-about section {
        padding-top: 10px;
    }

    .page-about h2 {
        margin-top: 10px !important;
    }

    .board ul {
        padding: 0;
    }

    .page-about section h2.about-section-title {
        padding: 10px 20px;
    }

    .page-about section .content-wrapper h2.about-section-title {
        padding: 10px 0;
    }

    .community-services ul {
        padding: 10px 0px;
        margin: 0;
    }

        .community-services ul li {
            display: block;
            width: 100%;
            margin: 0 0 40px 0;
            padding: 0;
        }

            .community-services ul li .image {
                width: 100%;
                padding: 0;
            }

            .community-services ul li .text {
                width: 100%;
                padding: 0;
            }

    .locations ul {
        padding: 10px 0;
        margin: 10px 10px;
    }

        .locations ul li .image {
            width: 100%;
        }

        .locations ul li .text {
            width: 100%;
        }

    .gallery ul {
        padding: 0 15px;
    }

        .gallery ul li {
            width: 50%;
            padding: 5px;
        }
}

