html {
    overflow-y: scroll;
}

#sb-site {
    opacity: 0;
    -webkit-transition: -webkit-transform 400ms ease, opacity 1s;
    -moz-transition: -moz-transform 400ms ease, opacity 1s;
    -o-transition: -o-transform 400ms ease, opacity 1s;
    transition: transform 400ms ease, opacity 1s;
}

#home #sb-site {
    -webkit-transition: -webkit-transform 400ms ease, opacity 1s .6s;
    -moz-transition: -moz-transform 400ms ease, opacity 1s .6s;
    -o-transition: -o-transform 400ms ease, opacity 1s .6s;
    transition: transform 400ms ease, opacity 1s .6s;
}

.parallaxInit #sb-site,
.imagesLoaded #sb-site {
    opacity: 1;
}

body {
    font-family: 'Lato';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.load-cover {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    background-color: #f4f4f4;
    z-index: 20;
    transition: all .8s;
    pointer-events: none;
    z-index: -1;
}

#home .load-cover {
    transition: all .8s .6s;
}

.load-cover svg {
    width: 280px;
    height: 87px;
    margin: 75px auto;
    display: block;
    position: relative;
    -webkit-animation: LoadSVG .6s cubic-bezier(.075,.82,.165,1); /* Safari 4+ */
    -moz-animation: LoadSVG .6s cubic-bezier(.075,.82,.165,1); /* Fx 5+ */
    -o-animation: LoadSVG .6s cubic-bezier(.075,.82,.165,1); /* Opera 12+ */
    animation: LoadSVG .6s cubic-bezier(.075,.82,.165,1);
}

@keyframes LoadSVG {
    0% {
        opacity: 0;
        transform: translate3d(0, 15px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media(max-width: 1199px) {
    .load-cover svg {
        width: 263px;
        height: 82px;
        margin: 69px auto;
    }
}

@media(max-width: 991px) {
    .load-cover svg {
        margin: 69px auto 69px 0;
        width: 250px;
        height: 82px;
    }
}

.parallaxInit .load-cover, .imagesLoaded .load-cover {
    opacity: 0;
}

h1, .h1 {
    font-family: 'Poppins';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 34px;
}

h2, .h2 {
    font-family: 'Poppins';
    font-size: 54px;
    text-transform: uppercase;
    line-height: .9em;
}

h3, .h3 {
    font-family: 'Poppins';
    font-size: 48px;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 40px;
    text-transform: none;
}

h4, .h4 {
    font-family: 'Poppins';
    font-size: 24px;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #c19536;
    margin-bottom: 28px;
}

.img-fit {
    overflow: hidden;
}

.container-lg {
    padding-left: 50px;
    padding-right: 50px;
}

@media (min-width: 1600px) {

    .container-lg {
        max-width: 1520px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media(max-width: 568px) {
    h3, .h3 {
        font-size: 40px;
        margin-bottom: 25px;
        margin-right: 45px;
    }
}

/*------------------  Super Nav  ------------------*/

#supernav {
    background: rgba(207,167,80,1);
    background: -moz-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(207,167,80,1)), color-stop(77%, rgba(186,150,73,1)), color-stop(100%, rgba(186,150,73,1)));
    background: -webkit-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: -o-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: -ms-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: linear-gradient(to bottom, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfa750', endColorstr='#ba9649', GradientType=0 );
}


.supernav-list {
    padding: 0;
    margin: 0 -12px;
    list-style: none;
    font-family: "Poppins";
    font-weight: bold;
    text-transform: uppercase;
    float: left;
    font-size: 13px;
    line-height: 13px;
    position: relative;
}

    .supernav-list li {
        display: inline-block;
        padding: 0 12px;
    }


        .supernav-list li a {
            display: inline-block;
            padding: 16px 0 12px;
            border-bottom: 3px solid;
            color: #7a5e23;
            border-color: #bd9f57;
            -moz-transition: all .6s;
            -o-transition: all .6s;
            -webkit-transition: all .6s;
            transition: all .6s;
            text-decoration: none;
        }

            .supernav-list li.active a,
            .supernav-list li a:hover,
            .supernav-list li a:focus {
                color: #121212;
                outline: 0;
            }

.active-underline {
    position: absolute;
    left: 12px;
    bottom: 0;
    width: 241px;
    height: 3px;
    background-color: #fff;
    display: block;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    -webkit-transition: all .6s;
    transition: all .6s;
    pointer-events: none;
}

    .active-underline.active {
        left: 282px;
        width: 238px;
    }

@media(max-width: 767px) {

    .supernav-list {
        display: block;
        float: none;
        margin: 0 -15px;
    }

        .supernav-list li {
            padding: 0;
            width: 100%;
        }

            .supernav-list li a {
                width: 100%;
                padding-left: 15px;
                padding-right: 15px;
                background-color: rgba(255, 255, 255, 0);
                border-color: rgba(255, 255, 255, 0);
            }

            .supernav-list li.active a,
            .supernav-list li.active a:hover {
                background-color: rgba(255, 255, 255, .3);
                border-color: #fff;
            }

            .supernav-list li a:hover {
                background-color: rgba(255, 255, 255, .3);
                border-color: rgba(255, 255, 255, 0);
                border-color: #fff;
            }

            .supernav-list li.active-underline {
                display: none;
            }
}

.searchForm {
    float: right;
    height: 43px;
    position: relative;
}

    .searchForm.searchFormMobile {
        padding: 11px 0 9px;
        height: auto;
        width: 100%;
        float: none;
        background-color: #342f30;
    }

    .searchForm input {
        height: 100%;
        color: #231f20;
        background-color: transparent;
        border: none;
        outline: none;
        font-size: 15px;
        display: inline-block;
        text-align: right;
        -webkit-appearance: none;
    }


        .searchForm input::-webkit-input-placeholder {
            color: #231f20;
            opacity: 1;
            -moz-transition: all .3s;
            -o-transition: all .3s;
            -webkit-transition: all .3s;
            transition: all .3s;
        }

        .searchForm input:-moz-placeholder { /* older Firefox*/
            color: #231f20;
            opacity: 1;
            -moz-transition: all .3s;
            -o-transition: all .3s;
            -webkit-transition: all .3s;
            transition: all .3s;
        }

        .searchForm input::-moz-placeholder { /* Firefox 19+ */
            color: #231f20;
            opacity: 1;
            -moz-transition: all .3s;
            -o-transition: all .3s;
            -webkit-transition: all .3s;
            transition: all .3s;
        }

        .searchForm input:-ms-input-placeholder {
            color: #231f20;
            opacity: 1;
            -moz-transition: all .3s;
            -o-transition: all .3s;
            -webkit-transition: all .3s;
            transition: all .3s;
        }

        .searchForm input:focus::-webkit-input-placeholder {
            opacity: 0;
        }

        .searchForm input:focus:-moz-placeholder { /* older Firefox*/
            opacity: 0;
        }

        .searchForm input:focus::-moz-placeholder { /* Firefox 19+ */
            opacity: 0;
        }

        .searchForm input:focus:-ms-input-placeholder {
            opacity: 0;
        }

    .searchForm.searchFormMobile input {
        color: #fff;
        padding: 0;
        width: 100%;
        width: calc(100% - 35px);
        padding-left: 0;
        text-align: left;
    }

        .searchForm.searchFormMobile input::-webkit-input-placeholder {
            color: #fff;
            opacity: 1;
        }

        .searchForm.searchFormMobile input:-moz-placeholder { /* older Firefox*/
            color: #fff;
            opacity: 1;
        }

        .searchForm.searchFormMobile input::-moz-placeholder { /* Firefox 19+ */
            color: #fff;
            opacity: 1;
        }

        .searchForm.searchFormMobile input:-ms-input-placeholder {
            color: #fff;
            opacity: 1;
        }


    .searchForm button {
        font-size: 17px;
        display: inline-block;
        color: #231f20;
        border: none;
        outline: none;
        background-color: transparent;
        height: 100%;
        -webkit-appearance: none;
        -moz-transition: all .15s;
        -o-transition: all .15s;
        -webkit-transition: all .15s;
        transition: all .15s;
    }

        .searchForm button:hover, .searchForm button:focus {
            opacity: .5;
        }

    .searchForm.searchFormMobile button {
        color: #fff;
        padding: 0;
        float: right;
    }

    .searchForm button span {
        font-size: 0;
    }

/*------------------  /Super Nav  ------------------*/

/*------------------  Navigation  ------------------*/

#header {
    background-color: #231f20;
    position: relative;
    height: 180px;
    margin-bottom: -30px;
}

@media(max-width: 767px) {
    #home #header {
        height: auto;
        margin-bottom: 0;
    }
}

#header > .container {
    position: relative;
}

@media(max-width: 1199px) {
    #header {
        height: 170px;
    }
}

@media(max-width: 991px) {
    #header {
        height: 160px;
    }
}

@media(max-width: 767px) {
    #header {
        padding: 0;
        height: unset;
        margin-bottom: 0;
    }
}

#header .logo-container {
    z-index: 6000;
    pointer-events: none;
}

    #header .logo-container a {
        display: block;
        pointer-events: all;
    }

#header .logo {
    padding: 32px 40px 40px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@media(min-width: 992px) {
    #header .logo-container {
        position: absolute;
        top: 0;
        left: 50%;
        -moz-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        -o-transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}


@media(max-width: 1199px) {
    #header .logo {
        padding: 25px 15px;
        width: 293px;
    }
}


@media(max-width: 991px) {
    #header .logo {
        padding: 25px 0;
        display: block;
        margin: 0;
        max-width: 250px;
    }
}


.navigation {
    list-style: none;
    margin: 0 -20px;
    position: relative;
    z-index: 50;
    display: block;
    top: 50%;
    padding: 50px 0 40px;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    text-align: right;
    pointer-events: all;
}

    .navigation li {
        display: inline-block;
        padding: 15px 20px;
        position: relative;
        z-index: 50;
    }

        .navigation li:nth-of-type(1),
        .navigation li:nth-of-type(2),
        .navigation li:nth-of-type(3) {
            float: left;
        }

        .navigation li a {
            color: #9e9e9e;
            font-family: 'Poppins';
            display: inline-block;
            text-transform: uppercase;
            line-height: 14px;
            letter-spacing: .2px;
            -moz-transition: all .4s;
            -o-transition: all .4s;
            -webkit-transition: all .4s;
            transition: all .4s;
            text-decoration: none;
            position: relative;
        }

        .navigation li.active > a, .navigation li.active:hover > a {
            color: #bd9f57;
        }

        .navigation li a:hover,
        .navigation li a:focus {
            color: #eee;
            outline: 0;
        }

@media(max-width: 1199px) {
    .navigation {
        margin: 0 -15px;
    }

        .navigation li {
            padding: 0 15px;
        }
}

/* Dropdown */

.main-nav ul > li.active.dropdown-open > a:after {
    opacity: 0;
    -moz-transition: opacity .3s, transform 0s .4s;
    -o-transition: opacity .3s, transform 0s .4s;
    -webkit-transition: opacity .3s, transform 0s .4s;
    transition: opacity .3s, transform 0s .4s;
    -moz-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -o-transform: translateY(6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    z-index: 800;
}

.main-nav ul > li:hover > ul.dropdown-menu,
.main-nav ul > li.dropdown-open > ul.dropdown-menu,
.main-nav ul > li > a:focus + ul.dropdown-menu {
    pointer-events: auto;
    opacity: 1;
    -moz-transition: all .5s cubic-bezier(.07,.99,.49,.99);
    -o-transition: all .5s cubic-bezier(.07,.99,.49,.99);
    -webkit-transition: all .5s cubic-bezier(.07,.99,.49,.99);
    transition: all .5s cubic-bezier(.07,.99,.49,.99);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

ul.dropdown-menu {
    display: block;
    opacity: 0;
    border-radius: 0;
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    position: absolute;
    background-color: transparent;
    color: #fff;
    -moz-transition: opacity .2s, transform 0s .4s;
    -o-transition: opacity .2s, transform 0s .4s;
    -webkit-transition: opacity .2s, transform 0s .4s;
    transition: opacity .2s, transform 0s .4s;
    pointer-events: none;
    margin: 0;
    border: 0;
    padding: 0;
    float: none;
    z-index: 1600;
    padding: 13px 25px 25px;
    background-color: #171515;
    border-top: 2px solid #bd9f57;
    left: 8px;
}

.main-nav ul.dropdown-menu > li {
    color: #fff;
    /*display: block;*/
    padding: 0;
    font-weight: 800;
    height: auto;
    line-height: 1.4;
    width: 100%;
    white-space: normal;
    margin: 0;
}

    .main-nav ul.dropdown-menu > li > a {
        color: #c0c0c0;
        padding: 12px 35px 10px 0;
        font-weight: 500;
        font-size: 12px;
        -moz-transition: all .25s;
        -o-transition: all .25s;
        -webkit-transition: all .25s;
        transition: all .25s;
        display: block;
        text-align: left;
        border-bottom: 1px solid #545352;
    }

        .main-nav ul.dropdown-menu > li > a:after {
            content: '>';
            text-align: right;
            float: right;
            font-size: 14px;
            position: absolute;
            right: 0;
        }

        .main-nav ul.dropdown-menu > li > a:hover,
        .main-nav ul.dropdown-menu > li > a:focus {
            background-color: transparent;
            color: #fff;
            border-bottom: 1px solid #bd9f57;
        }

.main-nav ul.dropdown-menu > .active > a,
.main-nav ul.dropdown-menu > .active > a:hover,
.main-nav ul.dropdown-menu > .active > a:focus {
    background-color: transparent;
    color: #bd9f57;
    border-bottom: 1px solid #545352;
}

li:last-of-type ul.dropdown-menu {
    left: 50%;
    -moz-transform: translate(-50%, 30px);
    -ms-transform: translate(-50%, 30px);
    -o-transform: translate(-50%, 30px);
    -webkit-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
}

.main-nav ul > li:last-of-type:hover > ul.dropdown-menu,
.main-nav ul > li.dropdown-open:last-of-type > ul.dropdown-menu,
.main-nav ul > li:last-of-type > a:focus + ul.dropdown-menu {
    -moz-transform: translate(-50%, 13px);
    -ms-transform: translate(-50%, 13px);
    -o-transform: translate(-50%, 13px);
    -webkit-transform: translate(-50%, 13px);
    transform: translate(-50%, 13px);
}

li:last-of-type > ul.dropdown-menu > li:first-of-type > a:after {
    left: 50%;
    -moz-transform: translate(-55%, 0);
    -ms-transform: translate(-55%, 0);
    -o-transform: translate(-55%, 0);
    -webkit-transform: translate(-55%, 0);
    transform: translate(-55%, 0);
}

.main-nav > ul > li.active > a:after,
.main-nav > ul > li > a:hover:after,
.main-nav > ul > li > a:focus:after {
    opacity: 1;
}

.main-nav > ul > li.dropdown.dropdown-open.active > a:after,
.main-nav > ul > li.dropdown.dropdown-open > a:hover:after,
.main-nav > ul > li.dropdown.dropdown-open > a:focus:after {
    opacity: 0;
}

.nav-toggle {
    margin-bottom: 0;
    margin-right: 0;
    margin-right: -25px;
    border: 0;
    outline: 0;
    background-color: transparent;
    float: none;
    position: relative;
    display: block;
    padding: 52px 25px 51px;
    position: relative;
    width: 75px;
    border-radius: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    float: right;
}


    .nav-toggle .icon-bar {
        background-color: #fff;
        height: 3px;
        margin-bottom: 4px;
        display: block;
        width: 100%;
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

    .nav-toggle:hover .icon-bar {
        background-color: #c19536;
    }

#sb-site {
    -webkit-box-shadow: 0px 0px 62px -6px rgba(0,0,0,0.58);
    -moz-box-shadow: 0px 0px 62px -6px rgba(0,0,0,0.58);
    box-shadow: 0px 0px 62px -6px rgba(0,0,0,0.58);
    overflow: hidden;
}

.sb-slidebar {
    background-color: #231f20;
}

.mobile-navigation {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #111;
}

    .mobile-navigation li {
        width: 100%;
        border-bottom: 1px solid #151515;
    }

        .mobile-navigation li a {
            color: #c9c9c9;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            padding: 30px;
            font-size: 16px;
            text-decoration: none;
            -o-transition: all .2s;
            -moz-transition: all .2s;
            -webkit-transition: all .2s;
            transition: all .2s;
            border-top: 1px solid #434343;
            border-left: 1px solid #222;
        }

@media(max-width: 568px) {
    .mobile-navigation li a {
        padding: 20px;
        font-size: 14px;
    }
}

.mobile-navigation li a:active,
.mobile-navigation li a:active,
.mobile-navigation li a.sb-submenu-active {
    background-color: #1d191a;
    border-top: 1px solid #1d191a;
    border-left: 1px solid #1d191a;
    text-decoration: none;
    color: #fff;
}

.mobile-navigation li .flex-row a.menu-item {
    width: calc(100% - 90px);
    border-right: 1px solid #151515;
}

.toggle-submenu {
    cursor: pointer;
    border-left: 1px solid #151515;
    border-top: 1px solid #222;
    width: 90px;
}

    .toggle-submenu:after {
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #fff;
        pointer-events: none;
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -3px;
        margin-left: -5px;
    }

.sb-slidebar:after {
    width: 6px;
    height: 100%;
    position: absolute;
    left: -3px;
    width: 6px;
    top: 0;
    content: '';
    background-color: #222;
    z-index: -1;
}

.sub-menu-item.toggle-active {
    background-color: #333333;
}

.toggle-submenu.toggle-submenu-active {
    border-right: 1px solid #444444;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.sb-submenu {
    display: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    background-color: rgba(255, 255, 255, 0.03);
    font-style: normal;
    clear: both;
    overflow: hidden;
    border-top: 1px solid #151515;
}

    .sb-submenu li {
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .sb-submenu li a {
            color: #999;
            text-transform: none;
        }


@media(max-width: 568px) {
    .mobile-navigation li .flex-row a.menu-item {
        width: calc(100% - 60px);
    }

    .toggle-submenu {
        width: 60px;
    }
}

#breadcrumb .angle-content {
    padding: 30px 0 85px;
}

#breadcrumb .angle {
    background-color: #e9e8e8;
}

#breadcrumb {
    margin-bottom: -63px;
}

@media(max-width: 767px) {
    #breadcrumb {
        margin-bottom: 0;
    }

        #breadcrumb .angle-content {
            padding: 15px 0 13px;
        }
}


.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breadcrumb-list li {
        display: inline;
        padding: 0 4px;
    }

    .breadcrumb-list li,
    .breadcrumb-list a {
        color: #656363;
        font-family: Poppins;
        font-size: 18px;
    }
/*------------------  /Navigation  ------------------*/

/*------------------  Carousel  ------------------*/
.arbor-drugs_carousel, .story_slider {
    margin: 0 -12px;
    max-width: 100%;
    margin: 45px auto;
    min-height: 260px;
    position: relative;
}

    .arbor-drugs_carousel img, .story_slider img {
        width: 100%;
        border: 5px solid #fff;
    }

    .story_slider img {
        border: 5px solid #dccba6;
    }

    .arbor-drugs_carousel .item a, .story_slider .item a {
        display: block;
        text-decoration: none;
    }


.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    font-size: 35px;
    color: #231f20;
    cursor: pointer;
    opacity: 1;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

@media(max-width: 767px) {
    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}

.arbor-drugs_carousel .item, .story_slider .item {
    padding: 0 6px;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
}

    .arbor-drugs_carousel .item .inner, .story_slider .item .inner {
        position: relative;
        top: 0;
        left: 0;
    }

.item-image_container {
    position: relative;
    margin: 0 auto;
    display: block;
}

    .item-image_container .item-date {
        position: absolute;
        bottom: 20px;
        left: 20px;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 24px;
        line-height: 24px;
        color: #fff;
        display: none;
    }

.item-description {
    color: #fff;
    margin-top: 10px;
    font-family: "Archivo";
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
    /*text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.75);*/
}

.story_slider .item-description {
    color: #333;
    line-height: 24px;
}

@media(max-width: 767px) {
    .item-description {
        font-size: 18px;
    }
}

/*------------------  /Carousel  ------------------*/


.banner_learn-more .angle-content {
    padding: 80px 0 80px;
}

@media(max-width: 991px) {

    .banner_learn-more .angle-content {
        padding: 50px 0;
    }

    .banner_learn-more .btn {
        margin-top: 25px;
    }
}

/*------------------  /Footer  ------------------*/
@media(min-width: 1200px) {
    #footer:after {
        height: 50px;
        width: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 150px;
        content: '';
        background-color: rgba(186,150,73,1);
        z-index: 5;
    }
}

@media(max-width: 1199px) {
    #footer:after {
        height: 50px;
        width: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 250px;
        content: '';
        background-color: rgba(186,150,73,1);
        z-index: 5;
    }
}

#footer {
    z-index: 10;
    position: relative;
}

    #footer .angle-content {
        padding: 65px 0;
    }

@media(max-width: 767px) {

    #footer .angle-content {
        padding: 20px 0;
    }

    #footer .angle {
        -moz-transform: translateY(0) skew(0, 0);
        -ms-transform: translateY(0) skew(0, 0);
        -o-transform: translateY(0) skew(0, 0);
        -webkit-transform: translateY(0) skew(0, 0);
        transform: translateY(0) skew(0, 0);
        -webkit-backface-visibility: hidden;
    }
}

#footer .gold-bg {
    background: rgba(207,167,80,1);
    background: -moz-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(207,167,80,1)), color-stop(77%, rgba(186,150,73,1)), color-stop(100%, rgba(186,150,73,1)));
    background: -webkit-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: -o-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: -ms-linear-gradient(top, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    background: linear-gradient(to bottom, rgba(207,167,80,1) 0%, rgba(186,150,73,1) 77%, rgba(186,150,73,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfa750', endColorstr='#ba9649', GradientType=0 );
    z-index: 10;
}

@media(min-width: 768px) {
    #footer .gold-bg {
        position: relative;
    }
}

.footer-nav {
    list-style: none;
    margin: 0 -22px;
    padding: 0;
    overflow: hidden;
}

    .footer-nav li {
        float: left;
        font-family: 'Poppins';
        font-weight: 700;
        padding: 0 22px;
        font-size: 15px;
        text-transform: uppercase;
        line-height: 2em;
    }

@media(max-width: 768px) {
    .footer-nav {
        display: none;
    }
}

.footer-nav li a {
    color: #231f20;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
    position: relative;
    line-height: 1.2;
}

    .footer-nav li a:after {
        width: 0;
        height: 2px;
        background-color: #231f20;
        opacity: 0;
        content: "";
        position: absolute;
        left: 50%;
        top: 95%;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

    .footer-nav li a:hover:after,
    .footer-nav li a:focus:after {
        width: 100%;
        height: 2px;
        color: #000;
        opacity: 1;
    }

    .footer-nav li a:hover,
    .footer-nav li a:focus {
        color: #000;
        text-decoration: none;
        outline: 0;
    }

ul.footer-legal {
    margin: 0 -5px;
}

.footer-legal {
    list-style: none;
    padding: 0 0 10px;
    color: #4c432c;
    display: inline;
    font-size: 16px;
    clear: both;
}

    .footer-legal li {
        display: inline;
        padding: 0 5px;
        font-size: 16px;
    }

        .footer-legal li a {
            color: #4c432c;
        }

@media(max-width: 767px) {
    .footer-legal {
        display: block;
        font-size: 18px;
    }

    ul.footer-legal {
        margin: 0 -5px;
    }

    .footer-legal li {
        padding: 0 5px;
        font-size: 18px;
    }
}

.footer-social {
    list-style: none;
    margin: 0 -9px;
    padding: 0;
    text-align: right;
}

@media(max-width:1199px) {
    .footer-social {
        text-align: left;
        padding-top: 12px;
    }
}

.footer-social li {
    display: inline;
    padding: 0 9px;
}

    .footer-social li a {
        color: #fff;
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
        font-size: 28px;
    }

        .footer-social li a:hover {
            color: #ccc;
        }

        .footer-social li a span {
            font-size: 0;
        }


/*------------------  Misc  ------------------*/

.white-bg {
    background-color: #fff;
}

.text-white {
    color: #fff;
}

.text-gold {
    color: #bd9f57;
}


.relative {
    position: relative;
}

@media(min-width: 768px) {
    .text-justify {
        text-align: justify;
    }
}

.gold-bg,
.gold-bg.angle {
    background-color: #bd9f57;
}

.lt-grey-bg {
    background-color: #f7f7f6;
}

.light-grey-bg {
    background-color: #e9e8e8;
}

.dk-grey-bg {
    background-color: #231f20;
}

.grey-bg {
    background-color: #30302e;
}

.black-bg {
    background-color: #070506;
}

@media(max-width: 991px) {
    .fade-md {
        opacity: .3;
    }
}

.actions {
    margin: 40px -7px 0;
}

    .actions .btn {
        margin: 0 7px 15px;
    }

.btn {
    padding: 0;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 17px;
    border: 5px solid;
    border-radius: 0;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
}

    .btn:hover,
    .btn:focus {
        outline: 0;
    }

    .btn .content {
        padding: 12px 23px 10px;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        -webkit-transition: all .3s;
        transition: all .3s;
        display: block;
    }

    .btn .hover {
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 100%;
        left: 0;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        -webkit-transition: all .3s;
        transition: all .3s;
        text-align: center;
        padding: 11px 20px 9px;
        display: block;
    }

    .btn:hover .hover,
    .btn:hover .content,
    .btn:focus .hover,
    .btn:focus .content {
        -moz-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        -o-transform: translate3d(0, 100%, 0);
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }



.btn-gold {
    color: #caa962;
    border-color: #dccba6;
}

    .btn-gold .hover {
        color: #fff;
        background-color: #caa962;
    }

    .btn-gold:hover,
    .btn-gold:focus {
        border-color: #caa962;
        color: #caa962;
    }

.btn-grey {
    color: #adacac !important;
    border-color: #d6d5d5;
}

    .btn-grey .hover {
        color: #fff;
        background-color: #adacac;
    }

    .btn-grey:hover,
    .btn-grey:focus {
        border-color: #adacac;
        color: #adacac;
    }

.btn-white {
    color: #fff;
    border-color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
}

    .btn-white .hover {
        color: #151515;
        background-color: #fff;
    }

    .btn-white:hover,
    .btn-white:focus {
        border-color: #fff;
        color: #fff;
    }



.banner-image {
    width: 100%;
}

    .banner-image svg {
        min-width: 100%;
        position: relative;
        left: 50%;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

@media(min-width: 1199px) {
    .banner-image svg {
        min-width: 100%;
        position: relative;
        left: 50%;
        -moz-transform: translateX(-50%) scale(1.2);
        -ms-transform: translateX(-50%) scale(1.2);
        -o-transform: translateX(-50%) scale(1.2);
        -webkit-transform: translateX(-50%) scale(1.2);
        transform: translateX(-50%) scale(1.2);
    }
}




.slice-title {
    font-family: "Poppins";
    font-weight: bold;
    color: #231f20;
    font-size: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slice-desc {
    color: #5b5b5b;
    font-size: 20px;
}

.slice-cta {
    float: right;
    position: relative;
}

@media(max-width: 991px) {
    .slice-cta {
        float: none;
        margin-top: 25px;
    }
}

.text-right {
    text-align: right;
}

.caret-down {
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 0;
    margin-left: -20px;
    margin-top: -5px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    z-index: 3;
    border-top: 18px solid #fff;
}

.date {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Arvo';
    width: 100%;
    display: block;
    text-align: center;
    /*padding-bottom: 60px;*/
    visibility: hidden;
}

    .date:after {
        content: "";
        display: block;
        width: 30px;
        position: relative;
        left: 50%;
        top: 8px;
        margin-left: -15px;
        height: 3px;
        background-color: #111;
    }

    .date.date-absolute {
        position: absolute;
        top: 55px;
        z-index: 3;
    }

.back-to-top {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 2000;
    background-color: #231f20;
    color: #9e9e9e;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    cursor: pointer;
    opacity: .95;
}

@media(max-width: 640px) {

    .back-to-top {
        width: 50px;
        height: 50px;
    }
}

.back-to-top:hover {
    color: #fff;
    opacity: 1;
}

.back-to-top.topcontrol--not-top {
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

    /*.back-to-top.topcontrol--not-top.topcontrol--bottom {
            opacity: .1;
            -webkit-transform: translateY(25%);
            -moz-transform: translateY(25%);
            -o-transform: translateY(25%);
            -ms-transform: translateY(25%);
            transform: translateY(25%);
        }*/

    .back-to-top.topcontrol--not-top.topcontrol--bottom:hover {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

@media(max-width: 991px) {
    .back-to-top {
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.back-to-top i {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -16px;
    margin-left: -10px;
    color: #9e9e9e;
    font-size: 30px;
    line-height: 1;
    margin-right: 0;
    margin-bottom: 0;
}

    .back-to-top i:before {
        margin-left: 0;
        margin-right: 0;
        float: left;
    }

.editLink {
    text-align: center;
    z-index: 50;
    font-size: 15px;
    background-color: #e11e35;
    color: #eee;
    text-transform: uppercase;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 60px;
    font-family: 'Poppins';
    font-weight: 400;
    padding: 21px 0;
    letter-spacing: .8px;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-decoration: none;
}

    .editLink:hover,
    .editLink:focus {
        color: #fff;
        background-color: #ad1626;
        text-decoration: none;
        outline: 0;
    }

.divide0 {
    width: 100%;
    height: 0;
}

.divide2 {
    width: 100%;
    height: 2px;
}

.divide3 {
    width: 100%;
    height: 3px;
}

.divide5 {
    width: 100%;
    height: 5px;
}

.divide10 {
    width: 100%;
    height: 10px;
}

.divide15 {
    width: 100%;
    height: 15px;
}

.divide20 {
    width: 100%;
    height: 20px;
}

.divide25 {
    width: 100%;
    height: 25px;
}

.divide30 {
    width: 100%;
    height: 30px;
}

.divide35 {
    width: 100%;
    height: 35px;
}

.divide40 {
    width: 100%;
    height: 40px;
}

.divide45 {
    width: 100%;
    height: 40px;
}

.divide50 {
    width: 100%;
    height: 50px;
}

.divide55 {
    width: 100%;
    height: 55px;
}

.divide60 {
    width: 100%;
    height: 60px;
}

.divide65 {
    width: 100%;
    height: 65px;
}

.divide70 {
    width: 100%;
    height: 70px;
}

.divide75 {
    width: 100%;
    height: 75px;
}

.divide80 {
    width: 100%;
    height: 80px;
}

.divide85 {
    width: 100%;
    height: 85px;
}



.angle-cta,
.angle-cta-dark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

    .angle-cta,
    .angle-cta-dark span {
        font-size: 0;
    }


.angle-cta-dark {
    color: #111;
    border-color: #111;
}

.angle-cta:hover,
.angle-cta:focus,
a:hover .angle-cta,
a:focus .angle-cta {
    background-color: #fff;
    color: #111;
    outline: 0;
}

.angle-cta-dark:hover,
.angle-cta-dark:focus,
a:hover .angle-cta-dark,
a:focus .angle-cta-dark {
    background-color: #111;
    color: #fff;
    outline: 0;
}

.angle-cta:before,
.angle-cta-dark:before,
.angle-cta:after,
.angle-cta-dark:after {
    content: "\f105";
    height: 100%;
    width: 100%;
    line-height: 28.5px;
    color: #111;
    text-decoration: none;
    margin-right: -2px;
    text-align: center;
    font-size: 33px;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-transition: .4s;
    -o-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
    position: absolute;
    right: 0;
}

.angle-cta:after,
.angle-cta-dark:after {
    color: #fff;
}

.angle-cta:before,
.angle-cta-dark:before {
    position: absolute;
    right: 100%;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 0;
}


.angle-cta-dark:after {
    color: #111;
}

.angle-cta-dark:before {
    color: #fff;
    background-color: #111;
}

.angle-cta span,
.angle-cta-dark {
    font-size: 0;
}

.angle-cta:hover:after,
.angle-cta:hover:before,
.angle-cta:focus:after,
.angle-cta:focus:before,
a:hover .angle-cta:after,
a:hover .angle-cta:before,
a:focus .angle-cta:after,
a:focus .angle-cta:before {
    /*transform: translate3d(30px, 0, 0);*/
    color: #111;
    text-decoration: none;
}

.angle-cta-dark:hover:after,
.angle-cta-dark:hover:before,
.angle-cta-dark:focus:after,
.angle-cta-dark:focus:before,
a:hover .angle-cta-dark:after,
a:hover .angle-cta-dark:before,
a:focus .angle-cta-dark:after,
a:focus .angle-cta-dark:before {
    color: #fff;
}



a#moncur {
    display: block;
    width: 90px;
    height: 20px;
    position: relative;
    margin-top: 20px;
    opacity: 0.5;
    background-image: url("../img/moncur.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    cursor: pointer;
}

@media(max-width: 1199px) {
    a#moncur {
        margin-top: 25px;
        margin-bottom: 55px;
    }
}



a#moncur:hover,
a#moncur:focus {
    outline: 0;
    opacity: 1;
}

a#moncur:after {
    content: "Website by Moncur";
    opacity: 0;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
    position: absolute;
    top: 4px;
    left: 0;
    color: #231f20;
    font-size: 14px;
    white-space: nowrap;
}

a#moncur:hover:after,
a#moncur:focus:after {
    opacity: 1;
    -moz-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
    outline: 0;
}

@media(min-width: 1200px) {
    a#moncur {
        margin-top: 0;
        float: right;
        background-position: right;
    }

        a#moncur:after {
            left: -25px;
            top: -5px;
        }

        a#moncur:hover:after,
        a#moncur:focus:after {
            opacity: 1;
            -moz-transform: translate3d(-25px, 0, 0);
            -ms-transform: translate3d(-25px, 0, 0);
            -o-transform: translate3d(-25px, 0, 0);
            -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
            outline: 0;
        }
}


/*------------------  /Misc  ------------------*/

/*------------------  Animation  ------------------*/
@media(min-width: 767px) {
    .popUp {
        -webkit-transform: translate3d(0,25px,0);
        -moz-transform: translate3d(0,25px,0);
        -ms-transform: translate3d(0,25px,0);
        -o-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0);
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

        .popUp.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            -moz-transition: all .4s;
            -o-transition: all .4s;
            -webkit-transition: all .4s;
            transition: all .4s;
        }

    .textUp {
        -webkit-transform: translate3d(0,40px,0);
        -moz-transform: translate3d(0,40px,0);
        -ms-transform: translate3d(0,40px,0);
        -o-transform: translate3d(0,40px,0);
        transform: translate3d(0,40px,0);
        -moz-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -o-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -webkit-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        opacity: 0;
    }

    .textUpLong {
        -webkit-transform: translate3d(0,120px,0);
        -moz-transform: translate3d(0,120px,0);
        -ms-transform: translate3d(0,120px,0);
        -o-transform: translate3d(0,120px,0);
        transform: translate3d(0,120px,0);
        -moz-transition: all 2s cubic-bezier(.075,.82,.165,1);
        -o-transition: all 2s cubic-bezier(.075,.82,.165,1);
        -webkit-transition: all 2s cubic-bezier(.075,.82,.165,1);
        transition: all 2s cubic-bezier(.075,.82,.165,1);
        opacity: 0;
    }

        .textUp.active,
        .textUpLong.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            opacity: 1;
        }



    .date.textUp:after {
        -webkit-transform: translate3d(0,30px,0);
        -moz-transform: translate3d(0,30px,0);
        -ms-transform: translate3d(0,30px,0);
        -o-transform: translate3d(0,30px,0);
        transform: translate3d(0,30px,0);
        opacity: 0;
        -moz-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -o-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -webkit-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        transition: all 1.6s cubic-bezier(.075,.82,.165,1);
    }

    .date.textUp.active:after {
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -o-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -moz-transition-delay: .2s;
        -o-transition-delay: .2s;
        -webkit-transition-delay: .2s;
        transition-delay: .2s;
        opacity: 1;
    }

    .textUpLong .slow {
        -webkit-transform: translate3d(0,40px,0);
        -moz-transform: translate3d(0,40px,0);
        -ms-transform: translate3d(0,40px,0);
        -o-transform: translate3d(0,40px,0);
        transform: translate3d(0,40px,0);
        opacity: 0;
        -moz-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -o-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -webkit-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        transition: all 1.6s cubic-bezier(.075,.82,.165,1);
    }

    .textUpLong.active .slow {
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -o-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }

    .slideDown {
        -webkit-transform: translate3d(0,-16px,0);
        -moz-transform: translate3d(0,-16px,0);
        -ms-transform: translate3d(0,-16px,0);
        -o-transform: translate3d(0,-16px,0);
        transform: translate3d(0,-16px,0);
        -moz-transition: transform 1s;
        -o-transition: transform 1s;
        -webkit-transition: transform 1s;
        transition: transform 1s;
    }

        .slideDown.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }

    .fadeIn {
        -moz-transition: all 2s cubic-bezier(.075,.82,.165,1), transform 1s;
        -o-transition: all 2s cubic-bezier(.075,.82,.165,1), transform 1s;
        -webkit-transition: all 2s cubic-bezier(.075,.82,.165,1), transform 1s;
        transition: all 2s cubic-bezier(.075,.82,.165,1), transform 1s;
        opacity: 0;
    }

        .fadeIn.active {
            opacity: 1;
        }

    .fadeDown {
        -webkit-transform: translate3d(0,-16px,0);
        -moz-transform: translate3d(0,-16px,0);
        -ms-transform: translate3d(0,-16px,0);
        -o-transform: translate3d(0,-16px,0);
        transform: translate3d(0,-16px,0);
        opacity: 0;
        -moz-transition: all .75s;
        -o-transition: all .75s;
        -webkit-transition: all .75s;
        transition: all .75s;
    }

        .fadeDown.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            opacity: 1;
        }
}



/*------------------  Angle Banners  ------------------*/
.angle_outer-container {
    position: relative;
}

.angle-content {
    padding: 50px 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: all;
}

    .angle-content > .container {
        position: relative;
    }

.angle-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}


.angle {
    position: relative;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.angle_height-placeholder {
    background-color: transparent;
    position: relative;
}

[class^='angle'] {
    -moz-transform: skew(0deg);
    -ms-transform: skew(0deg);
    -o-transform: skew(0deg);
    -webkit-transform: skew(0deg);
    transform: skew(0deg);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
}

.angle-bg.parallax-bg {
    background-position: 50% 20%;
    background-attachment: fixed;
}


@media(max-width: 991px) {
    .angle-bg.parallax-bg {
        background-position: 50% 0;
        background-attachment: unset;
    }
}

@media(min-width: 767px) {

    .angle0 {
        -moz-transform: skew(0, 0);
        -ms-transform: skew(0, 0);
        -o-transform: skew(0, 0);
        -webkit-transform: skew(0, 0);
        transform: skew(0, 0);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle0 .angle-bg,
        .angle0 .angle-content,
        .angle0 .angle_height-placeholder {
            -moz-transform: skew(0, 0);
            -ms-transform: skew(0, 0);
            -o-transform: skew(0, 0);
            -webkit-transform: skew(0, 0);
            transform: skew(0, 0);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle0.negative {
            -moz-transform: skew(0, 0);
            -ms-transform: skew(0, 0);
            -o-transform: skew(0, 0);
            -webkit-transform: skew(0, 0);
            transform: skew(0, 0);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle0.negative .angle-bg,
            .angle0.negative .angle-content,
            .angle0.negative .angle_height-placeholder {
                -moz-transform: skew(0, 0);
                -ms-transform: skew(0, 0);
                -o-transform: skew(0, 0);
                -webkit-transform: skew(0, 0);
                transform: skew(0, 0);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }

    .angle1 {
        -moz-transform: skew(0, 1deg);
        -ms-transform: skew(0, 1deg);
        -o-transform: skew(0, 1deg);
        -webkit-transform: skew(0, 1deg);
        transform: skew(0, 1deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle1 .angle-bg,
        .angle1 .angle-content,
        .angle1 .angle_height-placeholder {
            -moz-transform: skew(0, -1deg);
            -ms-transform: skew(0, -1deg);
            -o-transform: skew(0, -1deg);
            -webkit-transform: skew(0, -1deg);
            transform: skew(0, -1deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle1.negative {
            -moz-transform: skew(0, -1deg);
            -ms-transform: skew(0, -1deg);
            -o-transform: skew(0, -1deg);
            -webkit-transform: skew(0, -1deg);
            transform: skew(0, -1deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle1.negative .angle-bg,
            .angle1.negative .angle-content,
            .angle1.negative .angle_height-placeholder {
                -moz-transform: skew(0, 1deg);
                -ms-transform: skew(0, 1deg);
                -o-transform: skew(0, 1deg);
                -webkit-transform: skew(0, 1deg);
                transform: skew(0, 1deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }


    .angle2 {
        -moz-transform: skew(0, 2deg);
        -ms-transform: skew(0, 2deg);
        -o-transform: skew(0, 2deg);
        -webkit-transform: skew(0, 2deg);
        transform: skew(0, 2deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle2 .angle-bg,
        .angle2 .angle-content,
        .angle2 .angle_height-placeholder {
            -moz-transform: skew(0, -2deg);
            -ms-transform: skew(0, -2deg);
            -o-transform: skew(0, -2deg);
            -webkit-transform: skew(0, -2deg);
            transform: skew(0, -2deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle2.negative {
            -moz-transform: skew(0, -2deg);
            -ms-transform: skew(0, -2deg);
            -o-transform: skew(0, -2deg);
            -webkit-transform: skew(0, -2deg);
            transform: skew(0, -2deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle2.negative .angle-bg,
            .angle2.negative .angle-content,
            .angle2.negative .angle_height-placeholder {
                -moz-transform: skew(0, 2deg);
                -ms-transform: skew(0, 2deg);
                -o-transform: skew(0, 2deg);
                -webkit-transform: skew(0, 2deg);
                transform: skew(0, 2deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }

    .angle3 {
        -moz-transform: skew(0, 3deg);
        -ms-transform: skew(0, 3deg);
        -o-transform: skew(0, 3deg);
        -webkit-transform: skew(0, 3deg);
        transform: skew(0, 3deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle3 .angle-bg,
        .angle3 .angle-content,
        .angle3 .angle_height-placeholder {
            -moz-transform: skew(0, -3deg);
            -ms-transform: skew(0, -3deg);
            -o-transform: skew(0, -3deg);
            -webkit-transform: skew(0, -3deg);
            transform: skew(0, -3deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle3.negative {
            -moz-transform: skew(0, -3deg);
            -ms-transform: skew(0, -3deg);
            -o-transform: skew(0, -3deg);
            -webkit-transform: skew(0, -3deg);
            transform: skew(0, -3deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle3.negative .angle-bg,
            .angle3.negative .angle-content,
            .angle3.negative .angle_height-placeholder {
                -moz-transform: skew(0, 3deg);
                -ms-transform: skew(0, 3deg);
                -o-transform: skew(0, 3deg);
                -webkit-transform: skew(0, 3deg);
                transform: skew(0, 3deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }



    .angle4 {
        -moz-transform: skew(0, 4deg);
        -ms-transform: skew(0, 4deg);
        -o-transform: skew(0, 4deg);
        -webkit-transform: skew(0, 4deg);
        transform: skew(0, 4deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle4 .angle-bg,
        .angle4 .angle-content,
        .angle4 .angle_height-placeholder {
            -moz-transform: skew(0, -4deg);
            -ms-transform: skew(0, -4deg);
            -o-transform: skew(0, -4deg);
            -webkit-transform: skew(0, -4deg);
            transform: skew(0, -4deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle4.negative {
            -moz-transform: skew(0, -4deg);
            -ms-transform: skew(0, -4deg);
            -o-transform: skew(0, -4deg);
            -webkit-transform: skew(0, -4deg);
            transform: skew(0, -4deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle4.negative .angle-bg,
            .angle4.negative .angle-content,
            .angle4.negative .angle_height-placeholder {
                -moz-transform: skew(0, 4deg);
                -ms-transform: skew(0, 4deg);
                -o-transform: skew(0, 4deg);
                -webkit-transform: skew(0, 4deg);
                transform: skew(0, 4deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }

    .angle6 {
        -moz-transform: skew(0, 6deg);
        -ms-transform: skew(0, 6deg);
        -o-transform: skew(0, 6deg);
        -webkit-transform: skew(0, 6deg);
        transform: skew(0, 6deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

    .angle5 {
        -moz-transform: skew(0, 5deg);
        -ms-transform: skew(0, 5deg);
        -o-transform: skew(0, 5deg);
        -webkit-transform: skew(0, 5deg);
        transform: skew(0, 5deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle5 .angle-bg,
        .angle5 .angle-content,
        .angle5 .angle_height-placeholder {
            -moz-transform: skew(0, -5deg);
            -ms-transform: skew(0, -5deg);
            -o-transform: skew(0, -5deg);
            -webkit-transform: skew(0, -5deg);
            transform: skew(0, -5deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle5.negative {
            -moz-transform: skew(0, -5deg);
            -ms-transform: skew(0, -5deg);
            -o-transform: skew(0, -5deg);
            -webkit-transform: skew(0, -5deg);
            transform: skew(0, -5deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle5.negative .angle-bg,
            .angle5.negative .angle-content,
            .angle5.negative .angle_height-placeholder {
                -moz-transform: skew(0, 5deg);
                -ms-transform: skew(0, 5deg);
                -o-transform: skew(0, 5deg);
                -webkit-transform: skew(0, 5deg);
                transform: skew(0, 5deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }

    .angle6 .angle-bg,
    .angle6 .angle-content,
    .angle6 .angle_height-placeholder {
        -moz-transform: skew(0, -6deg);
        -ms-transform: skew(0, -6deg);
        -o-transform: skew(0, -6deg);
        -webkit-transform: skew(0, -6deg);
        transform: skew(0, -6deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }


    .angle6.negative {
        -moz-transform: skew(0, -6deg);
        -ms-transform: skew(0, -6deg);
        -o-transform: skew(0, -6deg);
        -webkit-transform: skew(0, -6deg);
        transform: skew(0, -6deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle6.negative .angle-bg,
        .angle6.negative .angle-content,
        .angle6.negative .angle_height-placeholder {
            -moz-transform: skew(0, 6deg);
            -ms-transform: skew(0, 6deg);
            -o-transform: skew(0, 6deg);
            -webkit-transform: skew(0, 6deg);
            transform: skew(0, 6deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

    .angle7 {
        -moz-transform: skew(0, 7deg);
        -ms-transform: skew(0, 7deg);
        -o-transform: skew(0, 7deg);
        -webkit-transform: skew(0, 7deg);
        transform: skew(0, 7deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle7 .angle-bg,
        .angle7 .angle-content,
        .angle7 .angle_height-placeholder {
            -moz-transform: skew(0, -7deg);
            -ms-transform: skew(0, -7deg);
            -o-transform: skew(0, -7deg);
            -webkit-transform: skew(0, -7deg);
            transform: skew(0, -7deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }


        .angle7.negative {
            -moz-transform: skew(0, -7deg);
            -ms-transform: skew(0, -7deg);
            -o-transform: skew(0, -7deg);
            -webkit-transform: skew(0, -7deg);
            transform: skew(0, -7deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle7.negative .angle-bg,
            .angle7.negative .angle-content,
            .angle7.negative .angle_height-placeholder {
                -moz-transform: skew(0, 7deg);
                -ms-transform: skew(0, 7deg);
                -o-transform: skew(0, 7deg);
                -webkit-transform: skew(0, 7deg);
                transform: skew(0, 7deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }

    .angle8 {
        -moz-transform: skew(0, 8deg);
        -ms-transform: skew(0, 8deg);
        -o-transform: skew(0, 8deg);
        -webkit-transform: skew(0, 8deg);
        transform: skew(0, 8deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle8 .angle-bg,
        .angle8 .angle-content,
        .angle8 .angle_height-placeholder {
            -moz-transform: skew(0, -8deg);
            -ms-transform: skew(0, -8deg);
            -o-transform: skew(0, -8deg);
            -webkit-transform: skew(0, -8deg);
            transform: skew(0, -8deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle8.negative {
            -moz-transform: skew(0, -8deg);
            -ms-transform: skew(0, -8deg);
            -o-transform: skew(0, -8deg);
            -webkit-transform: skew(0, -8deg);
            transform: skew(0, -8deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle8.negative .angle-bg,
            .angle8.negative .angle-content,
            .angle8.negative .angle_height-placeholder {
                -moz-transform: skew(0, 8deg);
                -ms-transform: skew(0, 8deg);
                -o-transform: skew(0, 8deg);
                -webkit-transform: skew(0, 8deg);
                transform: skew(0, 8deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }

    .angle9 {
        -moz-transform: skew(0, 9deg);
        -ms-transform: skew(0, 9deg);
        -o-transform: skew(0, 9deg);
        -webkit-transform: skew(0, 9deg);
        transform: skew(0, 9deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle9 .angle-bg,
        .angle9 .angle-content,
        .angle9.negative .angle_height-placeholder {
            -moz-transform: skew(0, -9deg);
            -ms-transform: skew(0, -9deg);
            -o-transform: skew(0, -9deg);
            -webkit-transform: skew(0, -9deg);
            transform: skew(0, -9deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
            ;
        }

        .angle9.negative {
            -moz-transform: skew(0, -9deg);
            -ms-transform: skew(0, -9deg);
            -o-transform: skew(0, -9deg);
            -webkit-transform: skew(0, -9deg);
            transform: skew(0, -9deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle9.negative .angle-bg,
            .angle9.negative .angle-content,
            .angle9.negative .angle_height-placeholder {
                -moz-transform: skew(0, 9deg);
                -ms-transform: skew(0, 9deg);
                -o-transform: skew(0, 9deg);
                -webkit-transform: skew(0, 9deg);
                transform: skew(0, 9deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }

    .angle10 {
        -moz-transform: skew(0, 10deg);
        -ms-transform: skew(0, 10deg);
        -o-transform: skew(0, 10deg);
        -webkit-transform: skew(0, 10deg);
        transform: skew(0, 10deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        outline: 1px solid transparent;
    }

        .angle10 .angle-bg,
        .angle10 .angle-content,
        .angle10.negative .angle_height-placeholder {
            -moz-transform: skew(0, -10deg);
            -ms-transform: skew(0, -10deg);
            -o-transform: skew(0, -10deg);
            -webkit-transform: skew(0, -10deg);
            transform: skew(0, -10deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

        .angle10.negative {
            -moz-transform: skew(0, -10deg);
            -ms-transform: skew(0, -10deg);
            -o-transform: skew(0, -10deg);
            -webkit-transform: skew(0, -10deg);
            transform: skew(0, -10deg);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            outline: 1px solid transparent;
        }

            .angle10.negative .angle-bg,
            .angle10.negative .angle-content,
            .angle10.negative .angle_height-placeholder {
                -moz-transform: skew(0, 10deg);
                -ms-transform: skew(0, 10deg);
                -o-transform: skew(0, 10deg);
                -webkit-transform: skew(0, 10deg);
                transform: skew(0, 10deg);
                -webkit-backface-visibility: hidden;
                -moz-backface-visibility: hidden;
                backface-visibility: hidden;
                outline: 1px solid transparent;
            }
}

.angle0, .angle1, .angle2, .angle3, .angle4, .angle5, .angle6, .angle7, .angle8, .angle9, .angle10 {
    overflow: hidden;
    position: relative;
    margin: 0;
}



.angle-bg_img-container {
    position: relative;
    min-width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: visible;
    display: table;
    min-height: 100%;
    min-width: calc(100% + 2px);
}

    .angle-bg_img-container.image-top {
        top: 0;
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .angle-bg_img-container.image-left {
        left: 0;
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .angle-bg_img-container.image-top-left {
        left: 0;
        top: 0;
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

@media(max-width: 767px) {
    .angle-bg_img-container {
        top: 0;
        left: 0;
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        -webkit-transform: translate(0);
        transform: translate(0);
        width: 100%;
        height: 100%;
        display: block;
    }

        .angle-bg_img-container img {
            position: relative;
            top: 50%;
            left: 50%;
            -moz-transform: translate3d(-50%, -50%, 0);
            -ms-transform: translate3d(-50%, -50%, 0);
            -o-transform: translate3d(-50%, -50%, 0);
            -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
        }
}

.angle-bg_img {
    min-height: 100%;
    min-width: 100%;
}

.angle-content.no-padding {
    padding: 0;
}

.small-padding {
    padding: 45px 0;
}

@media(min-width: 768px) {
    .angle-content {
        padding: 80px 0;
    }

    .x-tall-padding {
        padding: 150px 0;
    }

    .tall-padding {
        padding: 110px 0;
    }

    .medium-padding {
        padding: 75px 0;
    }
}

@media(min-width: 992px) {
    .angle-content {
        padding: 75px 0;
    }

    .x-tall-padding {
        padding: 200px 0;
    }


    .tall-padding {
        padding: 125px 0;
    }

    .medium-padding {
        padding: 100px 0;
    }
}

@media(max-width: 767px) {
    .angle {
        height: 100%;
        width: 100%;
        display: block;
        position: absolute;
    }

    .angle-content {
        position: relative;
    }
}

/*------------------  Tile Grid  ------------------*/


.grid {
    margin: 0 0 60px;
    position: relative;
}

@media(max-width: 991px) {
    .grid {
        margin-bottom: 0;
    }
}

.tile-grid {
    /*margin: 0 0 60px;*/
}

.grid-animate {
    position: relative;
}

.tile {
    padding: 0 6px;
    margin-bottom: 12px;
    float: none;
    height: auto;
    position: absolute;
}

.image-tile img {
    max-width: 100%;
    max-height: 100%;
    border: 5px solid #fff;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.image-tile.overflow-left img {
    max-width: none;
    float: right;
}

.image-tile.overflow-left:before, .image-tile.overflow-left:after {
    clear: both;
    content: '';
    display: table;
}

.image-tile.overflow-left .divide15 {
    clear: both;
}

.image-tile.image-align_bottom img {
    position: absolute;
    bottom: 0;
    left: 5px;
}

.image-tile.image-align_bottom-right img {
    position: absolute;
    bottom: 0;
    right: 5px;
}

.image-tile.image-align_top img {
    position: absolute;
    top: 0;
    right: 5px;
}

image-align_top-left {
    position: absolute;
    top: 0;
    left: 5px;
}


.tile-content {
    text-align: center;
    font-size: 21px;
    color: #fff;
    display: block;
}

a.tile-content:hover, a.tile-content:focus {
    text-decoration: none;
    color: #fff;
}

.tile-content.tile-content_dark, a.tile-content.tile-content_dark:hover, a.tile-content.tile-content_dark:focus {
    color: #111;
}

    .tile-content.tile-content_dark p {
        color: #231f20;
    }

.tile-content.tile-content_left {
    text-align: left;
}

.tile-content p, .tile-content h2 {
    margin: 0 20px 10px;
}

.tile-content p {
    margin-bottom: 25px;
}

    .tile-content p:last-child {
        margin-bottom: 0;
    }

#civic .tile-content p, #civic .tile-content h2, #father .tile-content p, #father .tile-content h2, #arbor .tile-content h2 {
    margin-bottom: 25px;
}

@media(min-width: 1200px) {
    #leader .tile-content {
        margin-top: 65px;
    }
    #leader .image-tile1 {
        margin-top: 40px;
    }
}

@media(max-width: 1199px) {
    .tile-content p,
    .tile-content h2 {
        margin: 0 10px 20px;
    }
}

@media(max-width: 767px) {
    .tile-content p,
    .tile-content h2 {
        margin: 0 0 20px;
    }

    .tile-content h2 {
        font-size: 38px;
        line-height: 1.1;
    }
}

.tile-content.tile-content_left h2 {
    margin-bottom: 10px;
}

.tile-content.tile-content_center h2 {
    margin-bottom: 8px;
}



@media(max-width: 1199px) {
    .tile-content.tile-content_center p {
        margin: 0 0 25px;
    }
}

.tile-content p {
    line-height: 1.3;
}

.image-container {
    position: relative;
}

.image-tile_content {
    color: #fff;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 1.05;
    text-shadow: 3px 4px 1px rgba(0, 0, 0, 0.75);
    display: inline;
    display: table-row;
}

    .image-tile_content p {
        display: table-cell;
        vertical-align: middle;
        padding: 15px;
    }

    .image-tile_content.image-tile_content_dark {
        color: #18191b;
        text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    .image-tile_content.overlay-content {
        position: absolute;
        left: 5px;
        bottom: 5px;
        max-width: 100%;
        display: block;
    }

        .image-tile_content.overlay-content p {
            max-width: 65%;
            display: inline-block;
            margin: 0;
        }

        .image-tile_content.overlay-content [class^='angle-cta'] {
            /*position: absolute;
            right: 15px;
            bottom: 15px;*/
            top: 10px;
            float: none;
        }

        .image-tile_content.overlay-content.image-tile_content_top {
            top: 5px;
            bottom: unset;
        }


.tile-grid .tile {
    position: relative;
}

.tile-grid_4 {
    min-height: 400px;
}

    .tile-grid_4 .row {
        position: relative;
        margin: 0;
    }

.tile-grid_2 .tile {
    text-align: center;
}

.tile-grid_2 .image-tile_image {
    min-width: 100%;
}

@media(min-width: 768px) {


    .tile-grid .row {
        display: flex;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        clear: both;
    }

        .tile-grid .row:before, .tile-grid .row:after {
            display: none;
        }

    .align-right {
        text-align: right;
    }

    .align-bottom {
        display: flex;
    }


    .tile-grid_4 .row:nth-child(1) {
        align-items: flex-end;
    }

    .tile-grid_4 .row .tile:nth-child(1) {
        text-align: right;
        float: right;
    }

        .tile-grid_4 .row .tile:nth-child(1) .text-tile_inner {
            float: right;
        }
}

@media(max-width: 767px) {



    .tile-grid .tile {
        text-align: center;
    }

    .tile-grid .text-tile_inner {
        margin: 0 auto;
    }

    .tile-grid_2 .tile:first-of-type {
        margin-bottom: 65px;
    }
}

.img-desc {
    color: #5b5b5b;
    font-size: 20px;
    margin: 30px 65px 0;
}

    .img-desc h3 {
        font-family: "Poppins";
        font-weight: 300;
        font-size: 36px;
        color: #231f20;
        text-transform: uppercase;
    }

.text-tile .text-tile_inner {
    max-width: 440px;
    border: 5px solid #fff;
    background-color: #333333;
    color: #fff;
    padding: 40px 35px;
    font-family: Arvo;
    font-style: normal;
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
}

.text-tile .text-tile_inner div {
    font-size: 16px;
    line-height: 24px;
    margin-top: 6px;
}

.testimonial-tile .name {
    font-style: normal;
    font-family: Archivo;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 30px;
    line-height: 1.3;
    margin-bottom: 0;
}

@media(max-width: 767px) {
    .text-tile .text-tile_inner {
        font-size: 20px;
        padding: 45px 35px;
    }

    .testimonial-tile .name {
        font-size: 16px;
    }
}

/*------------------  /Angle Banners  ------------------*/



/*------------------  Home Title Banner  ------------------*/

.home_title-banner {
    font-size: 20px;
    color: #5b5b5b;
}

    .home_title-banner .angle-content {
        padding: 65px 0 95px;
        text-align: center;
    }


@media(max-width: 767px) {

    .home_title-banner .angle-content {
        padding: 50px 0;
    }
}

.home_title-banner h1 {
    color: #c19536;
    margin-top: 0;
    margin-bottom: 25px;
}

.home_title-banner p {
    margin: 0 60px 28px;
}

@media(max-width: 991px) {

    .home_title-banner p {
        margin: 0 0 28px;
    }
}

/*------------------  /Home Title Banner  ------------------*/


/*------------------  Story Title Banner  ------------------*/

.story_title-banner .angle-content {
    padding: 65px 0 100px;
}

@media(max-width: 991px) {
    .story_title-banner .angle-content {
        padding: 45px 0 80px;
    }
}

@media(max-width: 767px) {
    .story_title-banner .angle-content {
        padding: 45px 0 65px;
    }
}

#stories-page .story_title-banner .angle-content,
#testimonials-page .story_title-banner .angle-content,
#search .story_title-banner .angle-content {
    padding: 65px 0 0;
}

.story_title-banner h1,
.story_title-banner h2 {
    text-align: center;
}



.story_title-banner h1 {
    color: #adacac;
    font-size: 24px;
    font-family: 'Archivo';
    letter-spacing: .5px;
    font-weight: 700;
    margin-bottom: 13px;
}

.story_title-banner h2, .story_title-banner .h2 {
    color: #c19536;
    text-transform: none;
    font-weight: 300;
    font-size: 58px;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: .5px;
    font-family: 'Poppins';
}

.dash {
    width: 36px;
    height: 3px;
    background-color: #c19536;
    display: block;
    margin: 0 auto;
}

.title-content {
    color: #333333;
    font-size: 20px;
    line-height: 1.8;
    margin: 50px 45px 0;
}

[class^=col] .title-content {
    margin: 50px 0;
}

@media(max-width: 767px) {
    .story_title-banner h1 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .story_title-banner h2, .story_title-banner .h2 {
        font-size: 49px;
        line-height: 1.3;
        margin-bottom: 25px;
    }


    .title-content {
        color: #333333;
        font-size: 20px;
        line-height: 1.8;
        margin: 35px 0 0;
    }
}

@media(max-width: 640px) {

    .story_title-banner h1 {
        font-size: 18px;
    }

    .story_title-banner h2, .story_title-banner .h2 {
        font-size: 38px;
    }

    [class^=col] .title-content {
        margin: 30px 0;
    }
}

@media(max-width: 568px) {
    .story_title-banner h1,
    .story_title-banner h2,
    .story_title-banner .h2 {
        text-align: left;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .title-content.text-center {
        text-align: left;
    }

    .story_title-banner .dash {
        margin: 0;
    }
}

/*------------------  /Story Title Banner  ------------------*/

.images .angle-content {
    padding: 80px 0;
}

@media(max-width: 1199px) {
    .images .angle-content {
        padding: 70px 0;
    }
}

@media(max-width: 991px) {
    .images .angle-bg.parallax-bg {
        background-position: 50% 0 !important;
    }
}

@media(min-width: 992px) {
    .images .angle-bg.parallax-bg {
        background-position: 50% -200px;
    }
}

@media(max-width: 767px) {
    .images .angle-content {
        padding: 75px 0;
    }
}

#content .angle-content {
    padding: 90px 0 115px;
}

.general-content {
    font-size: 20px;
    color: #333;
    font-family: "Lato";
    line-height: 1.7;
}

    .general-content p, .title-content ul, .title-content p, .title-content ul {
        margin-bottom: 40px;
    }

@media(max-width: 640px) {
    .general-content p, .title-content p {
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .title-content ul, .title-content ul {
        margin-bottom: 25px;
    }
}

/*------------------  Banner Growing Up  ------------------*/
.banner_growing-up {
    margin-top: 0;
    position: relative;
}

    .banner_growing-up .tile-content p, .banner_growing-up .tile-content h2 {
        margin-left: 10px;
        margin-right: 10px;
    }


    .banner_growing-up .grid {
        height: 580px;
    }

    .banner_growing-up .date {
        color: #5b5b5b;
    }

        .banner_growing-up .date:after {
            background-color: #fff;
        }

    .banner_growing-up .tile1 {
        left: 0;
        top: 0;
        margin: 10px 0 0;
    }

    .banner_growing-up .tile2 {
        left: 50%;
        top: 0;
    }

    .banner_growing-up .tile3 {
        left: 66.666666666666664%;
        top: 41px;
    }

    .banner_growing-up .tile4 {
        top: 267px;
        left: 8.333333333333332%;
    }

    .banner_growing-up .tile5 {
        top: 267px;
        left: 50%;
    }

@media(max-width: 1199px) {
    .banner_growing-up .grid {
        height: 600px;
    }

    .banner_growing-up .tile1 {
        left: 0;
        top: 0;
    }

    .banner_growing-up .tile2 {
        left: 50%;
        top: 82px;
    }

    .banner_growing-up .tile3 {
        left: 66.666666666666664%;
        top: 82px;
    }

        .banner_growing-up .tile3 .image-tile_image,
        .banner_growing-up .tile2 .image-tile_image {
            height: 203px;
        }

    .banner_growing-up .tile4 {
        top: 297px;
        left: 8.333333333333332%;
    }

    .banner_growing-up .tile5 {
        top: 297px;
        left: 50%;
    }
}

@media(max-width: 991px) {
    .banner_growing-up .grid {
        height: auto;
    }


    .banner_growing-up .tile1 {
        left: 0;
        top: 0;
        float: left;
        position: relative;
    }

    .banner_growing-up .tile5, .banner_growing-up .tile4,
    .banner_growing-up .tile3, .banner_growing-up .tile2 {
        display: none;
    }
}


@media(min-width: 1200px) {
    .banner_growing-up .angle-content {
        padding-top: 90px;
    }

    .banner_growing-up .grid {
        margin-bottom: 10px;
    }
}

/*------------------  /Banner Growing Up  ------------------*/

/*------------------  Banner Wayne  ------------------*/
.banner_wayne-state {
    margin-top: 0;
}

@media(min-width: 768px) {
    .banner_wayne-state .angle-bg_img-container {
        top: 0;
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@media(max-width: 1199px) and (min-width: 768px) {
    .banner_wayne-state .angle-bg_img-container {
        top: 0;
        left: 0;
        -moz-transform: translate(-200px, 0);
        -ms-transform: translate(-200px, 0);
        -o-transform: translate(-200px, 0);
        -webkit-transform: translate(-200px, 0);
        transform: translate(-200px, 0);
    }
}

.banner_wayne-state .angle-bg {
    opacity: .9;
}

.banner_wayne-state .date {
    color: #c19536;
}

.banner_wayne-state .grid {
    height: 430px;
}

.banner_wayne-state .tile1 {
    left: 16.666666666666664%;
    top: -70px;
}

.banner_wayne-state .tile2 {
    left: 50%;
    top: 0;
}

.banner_wayne-state .tile3 {
    left: 0;
    top: 148px;
}

.banner_wayne-state .tile4 {
    top: 228px;
    left: 50%;
}

@media(min-width: 992px) {
    .banner_wayne-state .tile-content h2 {
        margin-bottom: 0;
    }
}

@media(max-width: 1199px) {
    .banner_wayne-state .tile-content {
        text-align: center;
    }
}

@media(max-width: 1199px) {

    .banner_wayne-state .angle-bg {
        opacity: .3;
    }

    .banner_wayne-state .tile1 {
        left: 0;
        top: 225px;
    }

    .banner_wayne-state .tile2 {
        left: 11%;
        top: 0;
        width: 82%;
    }

        .banner_wayne-state .tile2 h2 {
            margin: 0 15px 15px;
        }

    .banner_wayne-state .tile3 {
        display: none;
    }

    .banner_wayne-state .tile4 {
        top: 225px;
        left: 50%;
    }
}

@media(max-width: 991px) {
    .banner_wayne-state .grid {
        height: auto;
    }

    .banner_wayne-state .tile2 {
        left: 0;
        top: 0;
        width: 100%;
        position: relative;
        float: left;
    }

        .banner_wayne-state .tile2 h2 {
            margin: 0 0 15px;
        }


    .banner_wayne-state .tile3,
    .banner_wayne-state .tile4,
    .banner_wayne-state .tile1 {
        display: none;
    }
}

@media(max-width: 767px) {

    .banner_wayne-state .tile1 {
        display: none;
    }
}
/*------------------  /Banner Wayne  ------------------*/

/*------------------  Banner Marcia  ------------------*/
.banner_marcia {
    position: relative;
}

@media(max-width: 991px) {
    .banner_marcia .angle-bg.fade-md {
        opacity: .5 !important;
    }
}

/*------------------  /Banner Marcia  ------------------*/


/*------------------  Civic Banner  ------------------*/
.banner_civic-drugs {
    position: relative;
}

    .banner_civic-drugs .grid {
        margin: 0;
    }

@media(max-width: 991px) {
    .banner_civic-drugs .tile-content {
        text-align: center;
    }
}

.banner_civic-drugs .date {
    color: #c19536;
}

    .banner_civic-drugs .date:after {
        background-color: #fff;
    }

/*------------------  /Civic Banner  ------------------*/

/*------------------  Father Banner  ------------------*/
.banner_father {
    position: relative;
}


    .banner_father .date:after {
        background-color: #fff;
    }

/*------------------ /Father Banner  ------------------*/

/*------------------  Arbor Banner  ------------------*/
.banner_arbor-drugs {
    position: relative;
}

    .banner_arbor-drugs .date:after {
        background-color: #c19536;
    }

    .banner_arbor-drugs .angle-cta {
        left: 50%;
        margin-top: 60px;
        position: relative;
        margin-bottom: 60px;
    }

@media(max-width: 991px) {
    .banner_arbor-drugs .angle-cta {
        top: 20px;
    }
}
/*------------------  /Arbor Banner  ------------------*/

/*------------------  Giving Back Banner  ------------------*/


.banner_giving-back .date {
    color: #c19536;
}

.banner_giving-back {
    position: relative;
}

    .banner_giving-back .date:after {
        background-color: #fff;
    }

    .banner_giving-back .grid {
        height: 555px;
    }

    .banner_giving-back .tile1 {
        left: 0;
    }

    .banner_giving-back .tile2 {
        left: 41.667%;
        top: 0;
    }

    .banner_giving-back .tile3 {
        left: 41.667%;
        top: 270px;
        height: 268px;
        width: auto;
    }

    .banner_giving-back .tile4 {
        top: 270px;
        left: 77.25%;
        height: 190px;
    }


    .banner_giving-back .tile6 {
        top: 323px;
        left: 8.333%;
    }

@media(max-width: 1199px) {

    .banner_giving-back .tile1 {
        left: -8.5%;
        height: 260px;
    }

    .banner_giving-back .tile3 {
        top: 271px;
        height: 209px;
    }

    .banner_giving-back .tile4 {
        top: 271px;
        height: 155px;
        left: 75.4%
    }
    .banner_giving-back .tile6 {
        top: 271px;
        left: 8.333%;
    }
}

@media(max-width: 991px) {

    .banner_giving-back .grid {
        height: auto;
    }

    .banner_giving-back .tile2 {
        position: relative;
        left: 0;
        top: 0;
        float: left;
    }

    .banner_giving-back .tile-content {
        text-align: center;
    }

        .banner_giving-back .tile-content h2 {
            margin-left: 70px;
            margin-right: 70px;
        }
}

@media(max-width: 767px) {

    .banner_giving-back .tile-content h2 {
        margin-left: 0;
        margin-right: 0;
    }

    .banner_giving-back .tile1 {
        display: none;
    }
}


/*------------------  /Giving Back Banner  ------------------*/

.clear {
    clear: both;
    height: 1px;
}

.flex {
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    clear: both;
    align-items: center;
}

    .flex.container:before,
    .flex.container:after,
    .flex.row:before,
    .flex.row:after {
        content: normal;
    }

.listing-item {
    border-top: 1px solid #838383;
    border-bottom: 1px solid #838383;
    margin-top: -1px;
    margin-bottom: -1px;
    position: relative;
    justify-content: flex-start; /* align items in Main Axis */
    align-items: stretch; /* align items in Cross Axis */
    -ms-align-content: stretch;
    -webkit-align-content: stretch;
    align-content: stretch; /* Extra space in Cross Axis */
}


    .listing-item:nth-of-type(2n) .listing-img {
        background-color: #464646;
    }

    .listing-item:nth-of-type(2n-1) .listing-img {
        background-color: #555555;
    }

.listing-img, .listing-desc {
    float: none;
}

.listing-desc {
    padding: 30px 0;
    font-size: 18px;
    line-height: 1.3;
}

    .listing-desc p {
        margin-bottom: 0;
    }

    .listing-desc .title {
        font-size: 36px;
        font-family: 'Poppins';
        text-transform: none;
        font-weight: 400;
        margin-bottom: 15px;
    }

        .listing-desc .title a {
            color: rgba(186,150,73,1);
            -moz-transition: all .15s;
            -o-transition: all .15s;
            -webkit-transition: all .15s;
            transition: all .15s;
            text-decoration: none;
        }

            .listing-desc .title a:hover,
            .listing-desc .title a:focus {
                color: #151515;
            }

@media(max-width: 991px) {
    .listing-desc .title {
        font-size: 28px;
    }
}

@media(min-width: 768px) {
    .listing-desc {
        padding: 80px 45px;
    }
}

@media(min-width: 1200px) {
    .landing-banner_image .main-content {
        margin: 40px 0 120px;
    }
}

.landing-banner_image {
    pointer-events: none;
}

    .landing-banner_image .main-content h3 {
        color: rgba(186,150,73,1);
    }


.related-stories {
    padding: 120px 0;
    position: relative;
    z-index: 5;
}

    .related-stories h3 {
        float: left;
    }

#stories-page .related-stories {
    padding-top: 80px;
}
@media(min-width: 768px) {
    #stories-page #title {
        padding-bottom: 80px;
    }
}

@media(max-width: 767px) {
    .related-stories {
        padding: 80px 0;
    }
}

.img-center {
    position: relative;
}

    .img-center img {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        -moz-transform: translate3d(-50%, -50%, 0);
        -ms-transform: translate3d(-50%, -50%, 0);
        -o-transform: translate3d(-50%, -50%, 0);
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }


/* Pagination */
.pagination {
    float: right;
    margin: 0;
}

    .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
        color: #fff;
        background-color: #ba9847;
        border-color: #d6d6d6;
    }

    .pagination > li > a, .pagination > li > span {
        border: 1px solid #d6d6d6;
        color: #444444;
        padding: 10px 18px;
    }

@media(max-width: 767px) {
    .pagination {
        float: none;
        margin: 10px 0 40px;
    }
}


/* Featured Testimonial */

.FeaturedTestimonial_content {
    font-style: italic;
    font-size: 24px;
    clear: both;
}

    .FeaturedTestimonial_content .author {
        font-style: normal;
        font-size: 18px;
        color: #aaa;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 1.4;
    }

        .FeaturedTestimonial_content .author span {
            color: #6a6264;
            font-size: 16px;
            text-transform: none;
            display: block;
        }

    .FeaturedTestimonial_content p {
        line-height: 1.6;
    }

.image-gallery {
    padding: 15px;
}

@media(min-width: 992px) {
    .gallery_outer {
        position: absolute;
        width: 100%;
        top: 75px;
        left: 50%;
        -moz-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        -o-transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        pointer-events: none;
    }

    .image-gallery {
        padding-left: 90px;
    }
}



.image-gallery .item {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    flex-basis: 50px;
    pointer-events: all;
    margin: -5px auto;
}

    .image-gallery .item img {
        max-width: 100%;
    }


@media(max-width: 992px) and (min-width: 768px) {
    .image-gallery {
        margin: 0 -15px;
        padding: 0 0 60px;
        overflow: hidden;
    }

        .image-gallery .item {
            width: 50%;
            float: left;
            padding: 0 15px 30px;
        }
}

.image-slider {
    margin: 0 -15px;
}

    .image-slider .slick-prev,
    .image-slider .slick-next {
        color: #fff;
    }

    .image-slider .image-tile {
        margin: 0 15px;
        height: 100%;
    }

    .image-slider .slick-list {
        max-height: 630px;
    }

@media(max-width: 1599px) {
    .image-slider .slick-list {
        max-height: 460px;
    }
}

@media(max-width: 1199px) {
    .image-slider .slick-list {
        max-height: 370px;
    }
}

@media(max-width: 990px) {
    .image-slider .slick-list {
        max-height: 420px;
    }
}


.image-slider .slick-track {
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    clear: both;
    align-items: center;
}

.contact-form {
    margin-bottom: 60px !important;
}

@media(min-width: 992px) {
    .contact-form, .contact-form.sky-form.contact-style {
        margin-right: 65px;
        padding-right: 95px;
        border-right: 1px solid #ba9847;
    }
}

.contact-form input {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
    border-radius: 2px;
    font-size: 16px;
    padding: 8px 12px;
    height: auto;
}

.contact-form textarea {
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
    border-radius: 2px;
    font-size: 16px;
    padding: 8px 12px;
    height: auto;
    resize: none;
}

.form-control:focus {
    border-color: #ba9847;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(186,152,71,0.4);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(186,152,71,0.4);
}

.contact-info {
    font-size: 18px;
    color: #231f20;
}

    .contact-info p {
        margin-bottom: 4px;
    }

    .contact-info a {
        color: #231f20;
        font-weight: 700;
    }

        .contact-info a:hover {
            color: #231f20;
        }

    .contact-info h4 {
        margin-bottom: 4px;
        margin-top: 20px;
        color: #ba9847;
        font-size: 21px;
        font-weight: 700;
        font-family: 'Lato';
    }

        .contact-info h4:first-child,
        .sb-slidebar .contact-info h4:first-child {
            margin-top: 0;
        }

.sb-slidebar .contact-info {
    margin-top: 10px;
    opacity: .75;
}

    .sb-slidebar .contact-info h4 {
        font-size: 15px;
        color: #a9a9a9;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 400;
        margin-top: 40px;
    }

.sb-slidebar .contact-info {
    color: #a9a9a9;
    padding: 30px;
    font-size: 15px;
    font-weight: 400;
    border-top: 1px solid #434343;
}

    .sb-slidebar .contact-info a {
        color: #a9a9a9;
        font-weight: 400;
    }

#sitemap {
    line-height: 1.1;
}

    #sitemap a {
        color: #c19536;
        text-decoration: none;
        -moz-transition: all .15s;
        -o-transition: all .15s;
        -webkit-transition: all .15s;
        transition: all .15s;
        margin-bottom: 15px;
        display: block;
    }

        #sitemap a:visited {
            color: #999;
        }

        #sitemap a:hover, #sitemap a:focus {
            color: #231f20;
        }


    #sitemap ul {
        margin: 10px 0 10px 3px;
        list-style: none;
        border-left: 6px solid #eee;
        padding-left: 20px;
        margin-left: 3px;
    }

    #sitemap > ul {
        list-style: none;
        padding: 0;
        border: 0;
    }


.list-inline {
    margin: 0 -5px;
}

.flex-row {
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    clear: both;
}

.flex-column {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-align-content: stretch;
    -ms-align-content: stretch;
    align-content: stretch;
}

    .flex-column .col-md-6 {
        float: none;
    }
/*.share-button{
    overflow: hidden;
    margin: 0 7px 15px;
    display: inline-block;
}

.share-button .btn{
    overflow: visible;
    width: auto;
    margin: 0;
}*/
.btn .hover.share-links {
    padding: 0;
    /*height: calc(100% + 10px);
    width: calc(100% + 10px);
    left: -5px;
        bottom: calc(100% + 5px);*/
    z-index: 99;
}

.btn:hover .hover.share-links, .btn:focus .hover.share-links {
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
    display: inline-block;
}

.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
    /*margin: 0.5em*/
    position: relative;
    width: 33.333334%;
    height: 100%;
    float: left;
}

.resp-sharing-button {
    -moz-transition: all .15s;
    -o-transition: all .15s;
    -webkit-transition: all .15s;
    transition: all .15s;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

.resp-sharing-button__icon svg {
    width: 1em;
    height: 1em;
}

.resp-sharing-button span {
    padding-left: 0.4em;
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
    stroke: #fff;
    fill: none;
    text-align: center;
    margin: 0 auto;
    height: 17px;
    display: block;
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none;
}

.resp-sharing-button--twitter {
    background-color: #55acee;
}

    .resp-sharing-button--twitter:hover {
        background-color: #2795e9;
    }

.resp-sharing-button--pinterest {
    background-color: #bd081c;
}

    .resp-sharing-button--pinterest:hover {
        background-color: #8c0615;
    }

.resp-sharing-button--facebook {
    background-color: #3b5998;
}

    .resp-sharing-button--facebook:hover {
        background-color: #2d4373;
    }

.resp-sharing-button--tumblr {
    background-color: #35465C;
}

    .resp-sharing-button--tumblr:hover {
        background-color: #222d3c;
    }

.resp-sharing-button--reddit {
    background-color: #5f99cf;
}

    .resp-sharing-button--reddit:hover {
        background-color: #3a80c1;
    }

.resp-sharing-button--google {
    background-color: #dd4b39;
}

    .resp-sharing-button--google:hover {
        background-color: #c23321;
    }

.resp-sharing-button--linkedin {
    background-color: #0077b5;
}

    .resp-sharing-button--linkedin:hover {
        background-color: #046293;
    }

.resp-sharing-button--email {
    background-color: #777;
}

    .resp-sharing-button--email:hover {
        background-color: #5e5e5e;
    }

.resp-sharing-button--xing {
    background-color: #1a7576;
}

    .resp-sharing-button--xing:hover {
        background-color: #114c4c;
    }

.resp-sharing-button--whatsapp {
    background-color: #25D366;
}

    .resp-sharing-button--whatsapp:hover {
        background-color: #1da851;
    }

.resp-sharing-button--google {
    background-color: #dd4b39;
    border-color: #dd4b39;
}

    .resp-sharing-button--google:hover,
    .resp-sharing-button--google:active {
        background-color: #c23321;
        border-color: #c23321;
    }


#cphBody_MessageSender_pnlMessageSuccess {
    color: green;
    margin-bottom: 25px;
}

.message i {
    float: left;
    margin-top: 3px;
    margin-right: 10px;
}

.slider-image {
    position: relative;
    display: block;
}

    .slider-image img {
        min-width: 100%;
    }

    .slider-image .image-rollover,
    .image-tile .image-rollover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        text-align: center;
        padding: 30px;
        background-color: #151515;
        color: #fff;
        font-size: 24px;
        line-height: 1.4;
        opacity: 0;
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
        border: 5px solid #fff;
    }

        .slider-image .image-rollover span,
        .image-tile .image-rollover span {
            -ms-flex: 0 1 auto;
            display: block;
            max-width: 100%;
            flex-shrink: 1;
        }

.arbor-drugs_carousel .slider-image .image-rollover,
.story_slider .slider-image .image-rollover,
.image-tile .image-rollover {
    font-size: 18px;
}

@media(max-width: 1199px) {
    .slider-image .image-rollover,
    .arbor-drugs_carousel .slider-image .image-rollover,
    .story_slider .slider-image .image-rollover,
    .image-tile .image-rollover {
        font-size: 18px;
        padding: 20px;
    }
}

@media(max-width: 991px) {
    .slider-image .image-rollover,
    .arbor-drugs_carousel .slider-image .image-rollover,
    .story_slider .slider-image .image-rollover,
    .image-tile .image-rollover {
        font-size: 15px;
        padding: 15px;
    }
}

.slider-image:hover .image-rollover,
.image-tile:hover .image-rollover {
    opacity: 1;
}

.image-tile_image_container {
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.FeaturedStory .angle:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #050505;
    opacity: .8;
    mix-blend-mode: multiply;
}


.twoColumnList, .twocollist {
    -moz-columns: 2;
    -webkit-columns: 2;
    columns: 2;
    margin-left: -25px;
    padding-left: 13px;
    list-style-type: square;
    list-style: none;
    padding: 0;
}

.onecollist {
    margin-left: 0;
    padding-left: 13px;
    list-style-type: square;
}

@media (max-width: 681px) {
    .twoColumnList, .twocollist {
        -webkit-column-count: 1; /* Chrome, Safari, Opera */
        -moz-column-count: 1; /* Firefox */
        column-count: 1;
    }
}

.twoColumnList li, .twocollist li, .onecollist li {
    margin-left: 25px;
    line-height: 1.2em;
    padding-bottom: 0.8em;
}

#videos-page .story_title-banner .angle-content {
    padding: 65px 0 45px;
}
#videos-page #content .angle-content {
    padding: 90px 0;
}

@media(max-width:767px) {
    #videos-page .story_title-banner .angle-content {
        padding: 45px 0 0;
    }
    #videos-page #content .angle-content {
        padding: 45px 0 60px;
    }
}

.video-container {
    margin-bottom: 60px;
}

.video-container h4 {
    margin-top: 25px;
    margin-bottom: 0;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive::before {
        display: block;
        content: "";
    }

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive .embed-responsive-item, 
.embed-responsive embed, 
.embed-responsive iframe, 
.embed-responsive object, 
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}