/**
 * CONTENTS
 *
 * BASE
 * Box-sizing............Better default `box-sizing`.
 * Media.................WP specific img aligns and iframe styling.
 * Typography............@fontfaces, base text and vertical rhythem setup.
 *
 * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 * Clearfix..............Properly clear floats.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Sliders/Carousels.....Sliders/Carousels.
 * Posts.................Post content for loop on blog homepage, search page, archives, etc.
 * Tabs..................Tabbed content.
 * Social Share..........Social share buttons
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements + Ubermenu.
 * Masthead..............Page title/image/slideshow header block.
 * Sidebar...............Sidebar elements.
 * Page footer...........The main page footer.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */




/*------------------------------------*\
    BASE
\*------------------------------------*/

/**
 * Box-sizing
 */

* { -webkit-box-sizing: border-box; box-sizing: border-box; }



/**
 * Media
 *
 * These selectors are hard cast because they are only used
 * by wordpress wyswyg when adding images to content
 */

.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.alignnone,
.wp-caption.aligncenter {
    margin: 0;
    width: auto !important; /* to overwrite inline widths */
}

img.alignright,
.wp-caption.alignright img,
img.alignleft,
.wp-caption.alignleft img {
    height: auto;
    max-width: 100%;
    width: 100%;
}

img.alignnone,
.wp-caption.alignnone img,
img.aligncenter,
.wp-caption.aligncenter img {
	height: auto;
	max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter { margin: 0 0 22px 0; }

img.alignright,
.wp-caption.alignright {
    float: none;
    margin: 0;
}

img.alignleft,
.wp-caption.alignleft {
    float: left;
    margin: 0 30px 22px 0;
}

img.aligncenter,
.wp-caption.aligncenter img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

iframe { max-width: 100%; }

.objectfit {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

@media ( min-width: 768px) {
	img.alignright,
	.wp-caption.alignright {
	    float: right;
	    margin: 0 0 22px 30px;
	}

	img.alignright,
	.wp-caption.alignright img,
	img.alignleft,
	.wp-caption.alignleft img {
	    height: auto;
	    max-width: 50%;
	}

}

/* Fade-in for lazyloaded images */
.will-lazyload {
	opacity: 0;
	-webkit-transition: opacity .25 linear;
         -o-transition: opacity .25 linear;
            transition: opacity .25 linear;
}

.will-lazyload.lazyloaded { opacity: 1; }



/**
 * Typography
 */

/*
  - Please set up line-heights in ems
  - Set up typography styling based on styles found in .xd file under Assets > Character Styles
  */

body {
    color: #505050;
    font: 400 14px/1.714em 'Mulish', sans-serif; /*24px*/
    font-display: swap;
    letter-spacing: 0.01em;
	overflow-anchor: none;
    overflow-x: hidden;
	scroll-behavior: smooth;
}

h1, .h1 {
    color: #231F20;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.01em;
    line-height: 1.286em; /*36px*/
    margin-top: 0;
    margin-bottom: 0.750em; /*21px*/
}

h2, .h2 {
    color: #231F20;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.02em;
    line-height: 1.231em; /*32px*/
    margin-top: 0;
    margin-bottom: 0.615em; /*16px*/
}

h3, .h3 {
    color: #231F20;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1.4em; /*28px*/
    margin-top: 0;
    margin-bottom: 0.8em; /*16px*/
}

h4, .h4 {
    color: #231F20;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.429em; /*20px*/
    margin-top: 0;
    margin-bottom: 0.357em;
    text-transform: uppercase;
}

.title-with-border {
    position: relative;
    margin-bottom: 0.815em;
    padding-left: 0;
}

.title-with-border:before {
    content: '';
    border-left: #9D2235 solid 2px;
    left: -15px;
    position: absolute;
    height: 704%;
    top: 0;
}

.title-with-border:after {
    content: '';
    border-bottom: #9D2235 solid 2px;
    position: absolute;
    left: -30px;
    bottom: -14px;
    width: 100%;
}

p, ul, ol {
    margin-top: 0;
    margin-bottom: 1.2em; /*21px*/
    color: #505050;
}

.page-content ul,
.page-content ol {
   width: auto; 
   overflow: hidden;
}

ul li,
ol li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 14px;
}

	.page-content ul li,
    .page-content ol li {
    	position: relative;
    	padding-left: 23px;
    }
    
    .page-content ul li:before,
    .page-content ol li:before {
        content: '■';
        color: #9D2235;
        display: inline-block;
        vertical-align: top;
        font-size: 1.1em;
        font-weight: bold;
        line-height: 1.4em;
        margin-right: 13px;
        position: absolute;
        left: 0;
    }

    .page-content ol { counter-reset: li; }

    .page-content ol li { counter-increment: li; }

    .page-content ol li:before {
        content: counter(li)'.';
        vertical-align: top;
        margin-right: 6px;
        line-height: 1.7em;
        width: 1em;
        font-size: 1em;
    }

a {
    color: #9D2235;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}

    .page-content a:hover {
    	border-bottom: 2px solid #9D2235;
    }

    p a { font-weight: 700; }

blockquote {
    border-left: 2px solid #9D2235;
    color: #9D2235;
    font: 15px/1.667em 'Mulish', sans-serif; /*25px*/
    margin: 0 0 1.533em 2.267em; /*23px 34px*/
    position: relative;
    padding-left: 1em;
}

    blockquote:before {
        content: '“';
        color: #9D2235;
        font: 700 50px/1em 'Mulish', sans-serif;
        position: absolute;
        left: -0.680em; /*34px*/
        top: 0;
    }

    blockquote p {
    	color: #9D2235;
    	margin-bottom: 0;
    }

@media (min-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.667em; /*25px*/
        height: 100%;
    }

    h1, .h1 {
        font-size: 36px;
        line-height: 1.167em; /*42px*/
	    letter-spacing: 0.02em;
    }

    h2, .h2 {
        font-size: 30px;
        line-height: 1.2em; /*36px*/
	    letter-spacing: 0.02em;
    }

    h3, .h3 {
        font-size: 20px;
        line-height: 1.3em; /*26px*/
	    letter-spacing: 0.02em;
    }

    h4, .h4 {
        font-size: 15px;
        line-height: 1.533em; /*23px*/
	    letter-spacing: 0.04em;
    }

    .title-with-border:before { height: 545%; }

    p, ul, ol { margin-bottom: 1em; /*21px*/ }

    ul li, 
    ol li { font-size: 15px; }

    .page-content ul li:before, 
    .page-content ol li:before { line-height: 1.2em; }

    blockquote {
    	font-size: 16px;
    	margin-bottom: 1.875em; /*30px*/
        margin-left: 5.063em; /*113px*/
        margin-right: 3.375em; /*70px*/
    }

    	blockquote:before { font-size: 60px; }
}

@media(min-width: 1025px) {
    body {
        font-size: 16px;
        line-height: 1.625em; /*26px*/
    }

    h1, .h1 {
        font-size: 52px;
        line-height: 1.154em; /*60px*/
	    letter-spacing: 0.04em;
    }

    h2, .h2 {
        font-size: 40px;
        line-height: 1.2em; /*48px*/
	    letter-spacing: 0.04em;
        margin-bottom: 0.2em; /*16px*/
    }

    h3, .h3 {
        font-size: 30px;
        line-height: 1.333em; /*40px*/
	    letter-spacing: 0.04em;
    }

    h4, .h4 {
        font-size: 16px;
        line-height: 1.5em; /*24px*/
	    letter-spacing: 0.06em;
    }

    .title-with-border:before {
        left: -20px;
        height: 360% !important;
        top: 0;
    }

    .title-with-border:after {
        left: -63px !important;
        bottom: -14px;
        width: 104% !important;
    }

    ul li, 
    ol li { font-size: 16px; }

    blockquote {
        font-size: 18px;
        margin-top: 2em; /*36px*/
        margin-bottom: 2em; /*36px*/
        margin-left: 4.444em; /*80px*/
        margin-right: 2.778em; /*50px*/
    }

    	blockquote:before { font-size: 70px; }
}


/**
 * Other General Styling
 */

::-moz-selection {
    background-color: #424F84;
    color: #fff;
}

::selection {
    background-color: #424F84;
    color: #fff;
}

.page-content { padding: 70px 0; }

.bg-default { background-color: #fff; }

.bg-grey { background-color: #E2E2E2; }

.bg-light-grey { background-color: #F9F9F9; }

.bg-transparent {
    background-color: rgb(255,255,255);
    background-color: rgba(255,255,255,0.95);
}

.text-blue { color: #424F84; }

.text-grey { color: #505050; }

.border-left {
    position: relative;
    padding-left: 15px;
}

    .border-left:after {
        content: '';
        border-left: #9D2235 solid 2px;
        left: 0;
        position: absolute;
        height: 105%;
        top: 0;
    }

.border-bottom {
    position: relative;
    margin-bottom: 22px;
}

    .border-bottom:before {
        content: '';
        border-bottom: #9D2235 solid 2px;

        position: absolute;
        left: -30px;
        bottom: -17px;
        width: 115%;
    }

.page-id-348 .full-bg .border-bottom:before { bottom: -12px; }

.page-id-348 .full-bg .border-bottom { margin-bottom: 20px; }

.home-cta .border-bottom:before {    
    width: 103%;
    left: -15px;
    bottom: -25px;
}

.home-cta .border-left:after {
    height: 147%;
    top: auto;
    bottom: -56px;
}

.border-radius-right-bottom,
.page-article .alignright,
.page-article .alignleft,
.page-article .aligncenter,
.page-article .alignnone { border-radius: 0 0 100px; }

@media (min-width: 768px) {
    .page-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .page-content.full-bg .row { margin: 0 !important; }

    .border-left { padding-left: 18px; }

    .border-bottom { margin-bottom: 29px; }

        .border-bottom:before { left: -40px; }
}

@media (min-width: 1025px) {
    .page-content {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .border-left { 
        padding-left: 28px; 
        position:relative;
        z-index: 2;
    }

    .border-bottom { margin-bottom: 40px; }

        .border-bottom::before { left: -70px; }
}



/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/


/**
 * Wrappers
 */

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 22px;
    padding-right: 22px;
}

.container { max-width: 1324px; }

@media (min-width: 1025px) {
    .container,
    .container-fluid {
        padding-left: 32px;
        padding-right: 32px;
    }
}


/**
 * Grid System
 *
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 * Base setup 20px gutters
 *
 * Phones         - xxs - <  600px    ** Default **
 * Small Tablets  - xs - >=  600px
 * Tablets        - sm - >= 768px
 * Desktop        - md - >= 1025px
 * Large Desktop  - lg - >= 1200px
 * --------------------------------------------------------------------------
 * Learn more here: http://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */

.row {
    margin-left: -16px; /* TODO: Default grid. Update if different in prototypes. */
    margin-right: -16px;
}

    [class*="col-"] {
        position: relative;
        min-height: 1px;
        padding-left: 16px; /* TODO: Default grid. Update if different in prototypes. */
        padding-right: 16px;
    }

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] { float:left; }

.col-xxs-12 { width: 100%; }
.col-xxs-11 { width: 91.66666667%; }
.col-xxs-10 { width: 83.33333333%; }
.col-xxs-9  { width: 75%; }
.col-xxs-8  { width: 66.66666667%; }
.col-xxs-7  { width: 58.33333333%; }
.col-xxs-6  { width: 50%; }
.col-xxs-5  { width: 41.66666667%; }
.col-xxs-4  { width: 33.33333333%; }
.col-xxs-3  { width: 25%; }
.col-xxs-2  { width: 16.66666667%; }
.col-xxs-1  { width: 8.33333333%; }

.col-xxs-pull-12 { right: 100%; }
.col-xxs-pull-11 { right: 91.66666667%; }
.col-xxs-pull-10 { right: 83.33333333%; }
.col-xxs-pull-9  { right: 75%; }
.col-xxs-pull-8  { right: 66.66666667%; }
.col-xxs-pull-7  { right: 58.33333333%; }
.col-xxs-pull-6  { right: 50%; }
.col-xxs-pull-5  { right: 41.66666667%; }
.col-xxs-pull-4  { right: 33.33333333%; }
.col-xxs-pull-3  { right: 25%; }
.col-xxs-pull-2  { right: 16.66666667%; }
.col-xxs-pull-1  { right: 8.33333333%; }
.col-xxs-pull-0  { right: auto; }

.col-xxs-push-12 { left: 100%; }
.col-xxs-push-11 { left: 91.66666667%; }
.col-xxs-push-10 { left: 83.33333333%; }
.col-xxs-push-9  { left: 75%; }
.col-xxs-push-8  { left: 66.66666667%; }
.col-xxs-push-7  { left: 58.33333333%; }
.col-xxs-push-6  { left: 50%; }
.col-xxs-push-5  { left: 41.66666667%; }
.col-xxs-push-4  { left: 33.33333333%; }
.col-xxs-push-3  { left: 25%; }
.col-xxs-push-2  { left: 16.66666667%; }
.col-xxs-push-1  { left: 8.33333333%; }
.col-xxs-push-0  { left: auto; }

.col-xxs-offset-12 { margin-left: 100%; }
.col-xxs-offset-11 { margin-left: 91.66666667%; }
.col-xxs-offset-10 { margin-left: 83.33333333%; }
.col-xxs-offset-9  { margin-left: 75%; }
.col-xxs-offset-8  { margin-left: 66.66666667%; }
.col-xxs-offset-7  { margin-left: 58.33333333%; }
.col-xxs-offset-6  { margin-left: 50%; }
.col-xxs-offset-5  { margin-left: 41.66666667%; }
.col-xxs-offset-4  { margin-left: 33.33333333%; }
.col-xxs-offset-3  { margin-left: 25%; }
.col-xxs-offset-2  { margin-left: 16.66666667%; }
.col-xxs-offset-1  { margin-left: 8.33333333%; }
.col-xxs-offset-0  { margin-left: 0; }

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
    [class*="col-xs-"] {float:left;}

    .col-xs-12 { width: 100%; }
    .col-xs-11 { width: 91.66666667%; }
    .col-xs-10 { width: 83.33333333%; }
    .col-xs-9  { width: 75%; }
    .col-xs-8  { width: 66.66666667%; }
    .col-xs-7  { width: 58.33333333%; }
    .col-xs-6  { width: 50%; }
    .col-xs-5  { width: 41.66666667%; }
    .col-xs-4  { width: 33.33333333%; }
    .col-xs-3  { width: 25%; }
    .col-xs-2  { width: 16.66666667%; }
    .col-xs-1  { width: 8.33333333%; }

    .col-xs-pull-12 { right: 100%; }
    .col-xs-pull-11 { right: 91.66666667%; }
    .col-xs-pull-10 { right: 83.33333333%; }
    .col-xs-pull-9  { right: 75%; }
    .col-xs-pull-8  { right: 66.66666667%; }
    .col-xs-pull-7  { right: 58.33333333%; }
    .col-xs-pull-6  { right: 50%; }
    .col-xs-pull-5  { right: 41.66666667%; }
    .col-xs-pull-4  { right: 33.33333333%; }
    .col-xs-pull-3  { right: 25%; }
    .col-xs-pull-2  { right: 16.66666667%; }
    .col-xs-pull-1  { right: 8.33333333%; }
    .col-xs-pull-0  { right: auto; }

    .col-xs-push-12 { left: 100%; }
    .col-xs-push-11 { left: 91.66666667%; }
    .col-xs-push-10 { left: 83.33333333%; }
    .col-xs-push-9  { left: 75%; }
    .col-xs-push-8  { left: 66.66666667%; }
    .col-xs-push-7  { left: 58.33333333%; }
    .col-xs-push-6  { left: 50%; }
    .col-xs-push-5  { left: 41.66666667%; }
    .col-xs-push-4  { left: 33.33333333%; }
    .col-xs-push-3  { left: 25%; }
    .col-xs-push-2  { left: 16.66666667%; }
    .col-xs-push-1  { left: 8.33333333%; }
    .col-xs-push-0  { left: auto; }

    .col-xs-offset-12 { margin-left: 100%; }
    .col-xs-offset-11 { margin-left: 91.66666667%; }
    .col-xs-offset-10 { margin-left: 83.33333333%; }
    .col-xs-offset-9  { margin-left: 75%; }
    .col-xs-offset-8  { margin-left: 66.66666667%; }
    .col-xs-offset-7  { margin-left: 58.33333333%; }
    .col-xs-offset-6  { margin-left: 50%; }
    .col-xs-offset-5  { margin-left: 41.66666667%; }
    .col-xs-offset-4  { margin-left: 33.33333333%; }
    .col-xs-offset-3  { margin-left: 25%; }
    .col-xs-offset-2  { margin-left: 16.66666667%; }
    .col-xs-offset-1  { margin-left: 8.33333333%; }
    .col-xs-offset-0  { margin-left: 0; }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    [class*="col-sm-"] {float:left;}

    .col-sm-12 { width: 100%; }
    .col-sm-11 { width: 91.66666667%; }
    .col-sm-10 { width: 83.33333333%; }
    .col-sm-9  { width: 75%; }
    .col-sm-8  { width: 66.66666667%; }
    .col-sm-7  { width: 58.33333333%; }
    .col-sm-6  { width: 50%; }
    .col-sm-5  { width: 41.66666667%; }
    .col-sm-4  { width: 33.33333333%; }
    .col-sm-3  { width: 25%; }
    .col-sm-2  { width: 16.66666667%; }
    .col-sm-1  { width: 8.33333333%; }

    .col-sm-pull-12 { right: 100%; }
    .col-sm-pull-11 { right: 91.66666667%; }
    .col-sm-pull-10 { right: 83.33333333%; }
    .col-sm-pull-9  { right: 75%; }
    .col-sm-pull-8  { right: 66.66666667%; }
    .col-sm-pull-7  { right: 58.33333333%; }
    .col-sm-pull-6  { right: 50%; }
    .col-sm-pull-5  { right: 41.66666667%; }
    .col-sm-pull-4  { right: 33.33333333%; }
    .col-sm-pull-3  { right: 25%; }
    .col-sm-pull-2  { right: 16.66666667%; }
    .col-sm-pull-1  { right: 8.33333333%; }
    .col-sm-pull-0  { right: auto; }

    .col-sm-push-12 { left: 100%; }
    .col-sm-push-11 { left: 91.66666667%; }
    .col-sm-push-10 { left: 83.33333333%; }
    .col-sm-push-9  { left: 75%; }
    .col-sm-push-8  { left: 66.66666667%; }
    .col-sm-push-7  { left: 58.33333333%; }
    .col-sm-push-6  { left: 50%; }
    .col-sm-push-5  { left: 41.66666667%; }
    .col-sm-push-4  { left: 33.33333333%; }
    .col-sm-push-3  { left: 25%; }
    .col-sm-push-2  { left: 16.66666667%; }
    .col-sm-push-1  { left: 8.33333333%; }
    .col-sm-push-0  { left: auto; }

    .col-sm-offset-12 { margin-left: 100%; }
    .col-sm-offset-11 { margin-left: 91.66666667%; }
    .col-sm-offset-10 { margin-left: 83.33333333%; }
    .col-sm-offset-9  { margin-left: 75%; }
    .col-sm-offset-8  { margin-left: 66.66666667%; }
    .col-sm-offset-7  { margin-left: 58.33333333%; }
    .col-sm-offset-6  { margin-left: 50%; }
    .col-sm-offset-5  { margin-left: 41.66666667%; }
    .col-sm-offset-4  { margin-left: 33.33333333%; }
    .col-sm-offset-3  { margin-left: 25%; }
    .col-sm-offset-2  { margin-left: 16.66666667%; }
    .col-sm-offset-1  { margin-left: 8.33333333%; }
    .col-sm-offset-0  { margin-left: 0; }
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
  [class*="col-md-"] {float:left;}

  .col-md-12 { width: 100%; }
  .col-md-11 { width: 91.66666667%; }
  .col-md-10 { width: 83.33333333%; }
  .col-md-9  { width: 75%; }
  .col-md-8  { width: 66.66666667%; }
  .col-md-7  { width: 58.33333333%; }
  .col-md-6  { width: 50%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-4  { width: 33.33333333%; }
  .col-md-3  { width: 25%; }
  .col-md-2  { width: 16.66666667%; }
  .col-md-1  { width: 8.33333333%; }

  .col-md-pull-12 { right: 100%; }
  .col-md-pull-11 { right: 91.66666667%; }
  .col-md-pull-10 { right: 83.33333333%; }
  .col-md-pull-9  { right: 75%; }
  .col-md-pull-8  { right: 66.66666667%; }
  .col-md-pull-7  { right: 58.33333333%; }
  .col-md-pull-6  { right: 50%; }
  .col-md-pull-5  { right: 41.66666667%; }
  .col-md-pull-4  { right: 33.33333333%; }
  .col-md-pull-3  { right: 25%; }
  .col-md-pull-2  { right: 16.66666667%; }
  .col-md-pull-1  { right: 8.33333333%; }
  .col-md-pull-0  { right: auto; }

  .col-md-push-12 { left: 100%; }
  .col-md-push-11 { left: 91.66666667%; }
  .col-md-push-10 { left: 83.33333333%; }
  .col-md-push-9  { left: 75%; }
  .col-md-push-8  { left: 66.66666667%; }
  .col-md-push-7  { left: 58.33333333%; }
  .col-md-push-6  { left: 50%; }
  .col-md-push-5  { left: 41.66666667%; }
  .col-md-push-4  { left: 33.33333333%; }
  .col-md-push-3  { left: 25%; }
  .col-md-push-2  { left: 16.66666667%; }
  .col-md-push-1  { left: 8.33333333%; }
  .col-md-push-0  { left: auto; }

  .col-md-offset-12 { margin-left: 100%; }
  .col-md-offset-11 { margin-left: 91.66666667%; }
  .col-md-offset-10 { margin-left: 83.33333333%; }
  .col-md-offset-9  { margin-left: 75%; }
  .col-md-offset-8  { margin-left: 66.66666667%; }
  .col-md-offset-7  { margin-left: 58.33333333%; }
  .col-md-offset-6  { margin-left: 50%; }
  .col-md-offset-5  { margin-left: 41.66666667%; }
  .col-md-offset-4  { margin-left: 33.33333333%; }
  .col-md-offset-3  { margin-left: 25%; }
  .col-md-offset-2  { margin-left: 16.66666667%; }
  .col-md-offset-1  { margin-left: 8.33333333%; }
  .col-md-offset-0  { margin-left: 0; }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  [class*="col-lg-"] {float:left;}

  .col-lg-12 { width: 100%; }
  .col-lg-11 { width: 91.66666667%; }
  .col-lg-10 { width: 83.33333333%; }
  .col-lg-9  { width: 75%; }
  .col-lg-8  { width: 66.66666667%; }
  .col-lg-7  { width: 58.33333333%; }
  .col-lg-6  { width: 50%; }
  .col-lg-5  { width: 41.66666667%; }
  .col-lg-4  { width: 33.33333333%; }
  .col-lg-3  { width: 25%; }
  .col-lg-2  { width: 16.66666667%; }
  .col-lg-1  { width: 8.33333333%; }

  .col-lg-pull-12 { right: 100%; }
  .col-lg-pull-11 { right: 91.66666667%; }
  .col-lg-pull-10 { right: 83.33333333%; }
  .col-lg-pull-9  { right: 75%; }
  .col-lg-pull-8  { right: 66.66666667%; }
  .col-lg-pull-7  { right: 58.33333333%; }
  .col-lg-pull-6  { right: 50%; }
  .col-lg-pull-5  { right: 41.66666667%; }
  .col-lg-pull-4  { right: 33.33333333%; }
  .col-lg-pull-3  { right: 25%; }
  .col-lg-pull-2  { right: 16.66666667%; }
  .col-lg-pull-1  { right: 8.33333333%; }
  .col-lg-pull-0  { right: auto; }

  .col-lg-push-12 { left: 100%; }
  .col-lg-push-11 { left: 91.66666667%; }
  .col-lg-push-10 { left: 83.33333333%; }
  .col-lg-push-9  { left: 75%; }
  .col-lg-push-8  { left: 66.66666667%; }
  .col-lg-push-7  { left: 58.33333333%; }
  .col-lg-push-6  { left: 50%; }
  .col-lg-push-5  { left: 41.66666667%; }
  .col-lg-push-4  { left: 33.33333333%; }
  .col-lg-push-3  { left: 25%; }
  .col-lg-push-2  { left: 16.66666667%; }
  .col-lg-push-1  { left: 8.33333333%; }
  .col-lg-push-0  { left: auto; }

  .col-lg-offset-12 { margin-left: 100%; }
  .col-lg-offset-11 { margin-left: 91.66666667%; }
  .col-lg-offset-10 { margin-left: 83.33333333%; }
  .col-lg-offset-9  { margin-left: 75%; }
  .col-lg-offset-8  { margin-left: 66.66666667%; }
  .col-lg-offset-7  { margin-left: 58.33333333%; }
  .col-lg-offset-6  { margin-left: 50%; }
  .col-lg-offset-5  { margin-left: 41.66666667%; }
  .col-lg-offset-4  { margin-left: 33.33333333%; }
  .col-lg-offset-3  { margin-left: 25%; }
  .col-lg-offset-2  { margin-left: 16.66666667%; }
  .col-lg-offset-1  { margin-left: 8.33333333%; }
  .col-lg-offset-0  { margin-left: 0; }
}



/**
 * Clearfix
 * Apply clearing without adding additional markup
 */

.clearfix:before, .clearfix:after,
.container:before, .container:after,
.container-fluid:before, .container-fluid:after,
.row:before, .row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after { clear: both; }


/*--------------------------------------------------------------*\
    OBJECTS
    Objects are independent generic stylibf classes or UI peices.
    All styles for objects should be self contained.

    e.g. an object shouldn't rely on trump helpers to apply padding etc.
\*--------------------------------------------------------------*/


/**
 * Buttons
 */

button {
    background: none;
    border: none;
}

.btn {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.429em; /*20px*/
    letter-spacing: 0.04em;
    padding: 0.643em 1.714em; /*9px 24px*/
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-transition: all .3s ease-in-out;
		 -o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
}

.btn {
    background-color: #9D2235;
    border-bottom: #7E1B2A solid 5px;
}

    .btn:hover {
        background-color: #BC283F;
        border-bottom: #972032 solid 5px !important;
        text-decoration: none;
    }

.btn-secondary {
    background-color: #424F84;
    border-bottom: #353F6A solid 5px;
}

    .btn-secondary:hover {
        background-color: #48599D;
        border-bottom: #3A477E solid 5px !important;
        text-decoration: none;
    }

.btn-tertiary {
    background: none;
    border: none;
    color: #9D2235;  
    font-weight: 800;
    font-size: 14px; 
    padding: 0 !important;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    text-transform: uppercase;
}

    .btn-tertiary:after,
    .btn-accent:after {
        font-family: 'icomoon';
        content: "\e90b";
        display: inline-block;
        vertical-align: middle;
        padding-left: 9px;
	    -webkit-transition: all .3s ease-in-out;
			 -o-transition: all .3s ease-in-out;
				transition: all .3s ease-in-out;
    }

    .btn-tertiary:hover {
        background: none;
        border: none !important;
        color: #BC283F;
        text-decoration: none;
    }

.btn-block {
    display: block;
    width: 100%;
}

.btn + .btn {
	margin-top: 17px; /* Add margin-top when 2 buttons are next to each other */
}

@media (min-width: 600px) {
    .btn + .btn {
		margin-top: 0;
		margin-left: 20px;
	}
}

@media (min-width: 768px) {
    .btn {
        font-size: 15px;
        line-height: 1.333em; /*20px*/
        padding: 0.733em 1.733em; /*11px 26px*/
    }
}

@media (min-width: 1025px) {
    .btn {
        font-size: 17px;
        line-height: 1.176em; /*20px*/
        padding: 0.765em 1.765em; /*13px 30px*/
    }
}



/**
 * Icons
 */

/* add icon code here */
@font-face {
	font-family: 'icomoon';
	src:  url('../fonts/icomoon.eot?er3scs');
	src:  url('../fonts/icomoon.eot?er3scs#iefix') format('embedded-opentype'),
		  url('../fonts/icomoon.ttf?er3scs') format('truetype'),
		  url('../fonts/icomoon.woff?er3scs') format('woff'),
		  url('../fonts/icomoon.svg?er3scs#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"]:before, [class*=" icon-"]:before,
[class^="icon-"]:after, [class*=" icon-"]:after {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-image-button-arrow:before { content: "\e900"; }
.icon-location:before { content: "\e901"; }
.icon-email:before { content: "\e902"; }
.icon-map:before { content: "\e903"; }
.icon-facebook:before { content: "\e904"; }
.icon-error-field:before { content: "\e905"; }
.icon-dropdown-collapsed:before { content: "\e906"; }
.icon-dropdown-expanded:before { content: "\e907"; }
.icon-tertiary-link-arrow:before { content: "\e908"; }
.icon-buttton-arrow:before { content: "\e909"; }
.icon-up-arrow:before { content: "\e90a"; }
.icon-right-arrow:before { content: "\e90b"; }
.icon-left-arrow:before { content: "\e90c"; }
.icon-menu:before { content: "\e90d"; }
.icon-search:before { content: "\e90e"; }
.icon-phone:before { content: "\e90f"; }
.icon-caret-up:before { 
	content: "\f0d8"; 
	position: absolute;
	top: -29px;
	right: 8px;
	font-size: 37px;
	color: #9D2235;
}



/**
 * Tables
 */

table {
    width: 100%;
    border-collapse:collapse;
    margin-top: 0;
    margin-bottom: 0;
    margin: 30px 0;
    overflow-x: auto;

}

table thead tr th {
    padding: 13px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    border-right: none;
    text-transform: capitalize;
    color: #fff;
    background: #424F84;
}

table tbody tr {
  text-align: center;
  background-color: #ffffff;
}

table tbody tr td {
    padding: 13px 25px;
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    border: 1px solid #F0F0F0;
}

table tbody tr:nth-child(odd) { background-color: #f5f5f5; }

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
    width: 100%;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Ninja Tables (responsive tables)
   - Add custom table styling at the bottom */

a.nt_edit_link {
    display: none !important;
}

.foo-table {
    font-size: 16px !important;
    border: 1px solid #C2C2C2 !important;
    border-radius: 0 !important;
    margin: 0px !important;
}

.semantic_ui .ui.celled.table tr td:first-child, 
.semantic_ui .ui.celled.table tr th:first-child {
    border-left: none !important;
}


.foo-table thead tr:first-child>th:first-child,
.foo-table thead tr:first-child>th:last-child {
    border-radius: 0 !important
}

.foo-table tbody tr td {
    border-left: 1px solid #C2C2C2 !important;
}

.semantic_ui .ui.table tr td {
    border-top: 1px solid #C2C2C2 !important;
}

.semantic_ui .ui.striped.table>tr:nth-child(2n),
.semantic_ui .ui.striped.table tbody tr:nth-child(2n) {
    background-color: #fff !important;

}

.foo-table thead tr hr {
    border-left: 0 !important;
}

.semantic_ui .ui.table td {
    padding: 12px 26px !important;
}

.foo-table.footable.table>thead>tr>th{
	padding: 14px 40px !important;
}

.foo-table thead th {
    background: #E8E8E8 !important;
    color: #3C3C3C !important;
    font-size: 15px;
    border-color: #C2C2C2 !important;
    border-bottom: none !important;
    padding: 24px 26px !important;
    white-space: nowrap;
}

.foo-table tbody {
    text-align: left;
}

/* Start adding custom Scroll */
.footable_parent:root{
    scrollbar-face-color: #767676; /* Firefox 63 compatibility */
    scrollbar-track-color: #c9c9c9; /* Firefox 63 compatibility */
    scrollbar-color: #767676 #c9c9c9;
    scrollbar-width: thin;
}

.footable_parent::-webkit-scrollbar {
    width: 10px;
}

.footable_parent::-webkit-scrollbar-track {
    background: #c9c9c9;
    border-radius: 10px;
}

.footable_parent::-webkit-scrollbar-thumb {
    background: #767676;
    border-radius: 10px;
}

.footable_parent {
    margin: 30px 0px;
}
/* End adding custom Scroll */

/* Custom CSS */




/**
 * Forms
 */

label {
    color: #231F20;
    font-family:'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none; /* Removes blue border on focus */
    border: 1px solid #ccc; /* TODO: Please add a branded border for focus */
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    border: 1px solid #AFAFAF;
    color: #505050;
    font: 600 16px/1.2em 'Mulish', sans-serif;
    text-align: left;
    display: block;
    height: 50px;
    width: 100%;
    background: #FFF;
    border-radius: 0;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

textarea {
    width: 100%;
    border: 1px solid #AFAFAF;
    padding: 10px 20px 20px 20px;
    height: 105px;
}

    /* Removes inconsistent padding from Firefox buttons */
    button::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        border: none;
        padding: 0;
    }

    textarea::-webkit-input-placeholder,
    input::-webkit-input-placeholder { /* Edge */
    	font-weight: 300;
        color: rgba(112,112,112,1);
    }

    textarea:-ms-input-placeholder,
    input:-ms-input-placeholder { /* Internet Explorer */
    	font-weight: 300;
        color: rgba(112,112,112,1);
    }

    textarea::placeholder,
    input::placeholder {
    	font-weight: 300;
        color: rgba(112,112,112,1);
    }

    [type="text"]:focus,
    [type="date"]:focus,
    [type="datetime"]:focus,
    [type="datetime-local"]:focus,
    [type="email"]:focus,
    [type="month"]:focus,
    [type="number"]:focus,
    [type="password"]:focus,
    [type="search"]:focus,
    [type="tel"]:focus,
    [type="url"]:focus,
    [type="week"]:focus,
    [type="date"]:focus,
    textarea:focus  {
        outline: none;
        box-shadow: none;
        border-left: 1px solid #424F84;
        border-right: 1px solid #424F84;
        border-top: 1px solid #424F84;
        border-bottom: 4px solid #424F84;
    }

    input[type="submit"] {
        color: #fff;
        display: inline-block;
        font-size: 17px;
        font-weight: 800;
        line-height: 1.429em;
        letter-spacing: 0.04em;
        padding: 0.643em 1.714em;
        text-align: center;
        text-transform: uppercase;
        vertical-align: middle;
        -webkit-transition: all .3s ease-in-out;
        	 -o-transition: all .3s ease-in-out;
        		transition: all .3s ease-in-out;
        background-color: #9D2235;
        border-bottom: #7E1B2A solid 5px;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    input[type="submit"]:hover {
        background-color: #BC283F;
        border-bottom-color: #972032;
        text-decoration: none;
    }


    .wpcf7-not-valid-tip {
        color: #9D2235;
        font-size: 14px;
        font-weight: 400; 
        line-height: 1.3em;
        padding-top: 5px;
        padding-left: 20px;
        padding-bottom: 15px;
        display: block;
        float: right;
    }

    .note {
        color: #A1A1A1;
        font-size: 14px;
        font-weight: 400; 
        display: block;
    }

    input.wpcf7-not-valid {
        border-left: 1px solid #9D2235;
        border-right: 1px solid #9D2235;
        border-top: 1px solid #9D2235;
        border-bottom: 4px solid #9D2235;
        position: relative;
    }

    .wpcf7-not-valid-tip { position: relative; }

    .wpcf7-not-valid-tip:after {
		content: "\e905";
		font-family: 'icomoon';
		font-size: 20px;
		display: block;
		color: #9d2235;

		position: absolute;
		top: -37px;
    	right: 13px;
		z-index: 99;
    }


/* Hide reCaptcha badge */
.grecaptcha-badge { visibility: hidden; }

/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
	margin-right: 15px;
	margin-bottom: 10px; /* incase items go to 2 lines */
}


.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
	margin-left: 5px;
}


/* Choices - Select field styling */

.choices {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    font-size: 16px;
}

.choices:focus {
    outline: none;
}

.choices:last-child {
    margin-bottom: 0;
}

.choices.is-open {
    overflow: initial;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    -webkit-user-select: none;
        -ms-user-select: none;
            -moz-user-select: none;
         user-select: none;
}

.choices.is-disabled .choices__item {
    cursor: not-allowed;
}

.choices [hidden] {
    display: none !important;
}

.choices[data-type*='select-one'] {
    cursor: pointer;
}

.choices[data-type*='select-one'] .choices__inner {
    padding-bottom: 7.5px;
}

.choices[data-type*='select-one'] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #dddddd;
    background-color: #ffffff;
    margin: 0;
}

.choices[data-type*='select-one'] .choices__button {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: 0.25;
}

.choices[data-type*='select-one'] .choices__button:hover, 
.choices[data-type*='select-one'] .choices__button:focus {
    opacity: 1;
}

.choices[data-type*='select-one'] .choices__button:focus {
    -webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
            box-shadow: 0px 0px 0px 2px #00bcd4;
}

.choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button {
    display: none;
}

.choices[data-type*='select-one']:after {
    content: '\f0d8';
    color: #9d2235;
    font-family: 'icomoon';
    font-size: 22px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
         align-content: center;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
    -webkit-transition: all .3s ease-in-out;
    	 -o-transition: all .3s ease-in-out;
    		transition: all .3s ease-in-out;

    position: absolute;
    right: 4px;
    top: 0;
    width: 16px;
    height: 16px;
}

.choices.is-open[data-type*='select-one']:after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.choices[data-type*='select-multiple'] .choices__inner,
.choices[data-type*='text'] .choices__inner {
    cursor: text;
}

.choices[data-type*='select-multiple'] .choices__button,
.choices[data-type*='text'] .choices__button {
    position: relative;
    display: inline-block;
    margin-top: 0;
    margin-right: -4px;
    margin-bottom: 0;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: 0.75;
    border-radius: 0;
}

.choices[data-type*='select-multiple'] .choices__button:hover, .choices[data-type*='select-multiple'] .choices__button:focus,
.choices[data-type*='text'] .choices__button:hover,
.choices[data-type*='text'] .choices__button:focus {
    opacity: 1;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #fff;
    padding: 0 20px;
    border: 1px solid #AFAFAF;
    border-radius: 0;
    font-size: 16px;
    height: 50px;
    overflow: hidden;
    color: #aaa;
    line-height: 1.2em;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #b7b7b7;
}

.is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.choices__list--single {
    display: inline-block;
    padding: 5px 0 0 0;
    width: 100%;
}

[dir='rtl'] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}

.choices__list--single .choices__item {
    width: 100%;
}

.choices__list--multiple {
    display: inline;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #00a5bb;
    color: #ffffff;
    word-break: break-all;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}

[dir='rtl'] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaa;
    border: 1px solid #919191;
}

.choices__list--dropdown {
    visibility: hidden;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all;
    will-change: visibility;
    z-index: 100;
}

.choices__list--dropdown.is-active {
    visibility: visible;
}

.is-open .choices__list--dropdown {
    border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px;
    position: relative;
    padding: 14px 20px;
    font-size: 16px;
    color: #707070;
}

[dir='rtl'] .choices__list--dropdown .choices__item {
    text-align: right;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: 0.5;
}

.choices__item {
    cursor: default;
}

.choices__item--selectable {
    cursor: pointer;
}

.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
        -ms-user-select: none;
            -moz-user-select: none;
         user-select: none;
    opacity: 0.5;
}

.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: gray;
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.choices__button:focus {
    outline: none;
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}

.choices__input:focus {
    outline: 0;
}

[dir='rtl'] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}

.choices__placeholder {
    opacity: 0.5;
}

@media (min-width: 600px) {
    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
    }

    [dir='rtl'] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }

    [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px;
    }

    .choices__list--single {
        padding: 13px 0 0 0;
    }

    .choices[data-type*='select-one']:after {
        right: 11px;
        top: 17px;

    }
}

@media (max-width: 767px) {
    .choices__inner {
        font-weight: 600;
        min-height: 50px;
        line-height: 40px;
    }

    .choices[data-type*="select-one"]::after {
        height: 50px;
        width: 45px;
        line-height: 50px;
    }
}



/**
 * Breadcrumbs
 */

.breadcrumbs {
    color: #7E7E7E;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

    .breadcrumbs ul {
        padding: 0;
        margin: 0;
    }

    	.breadcrumbs li { display: inline-block; }

	        .breadcrumbs a {
	            color: #7E7E7E;
	            letter-spacing: 0.05em;
                padding-left: 6px;
	        }

	        .breadcrumbs a:hover,
	        .breadcrumbs .breadcrumb_last {
	        	color: #9D2235;
	        	border-bottom: none;
	        }

            .breadcrumbs .separator {
                margin: 0 9px;
            }





/**
 * Pagination
 */

.wp-pagenavi { margin-top: 50px; }

.wp-pagenavi .pages {
    border: 0;
    margin-left: 0;
    padding-left: 0;
}

.wp-pagenavi a:hover { border: 1px solid #9D2235; }

.wp-pagenavi span.current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    border: 1px solid #ddd;
    display: inline-block;
    padding: 6px 11px;
}

.wp-pagenavi span.current {
    background-color: #ddd;
    border-color: #ddd;
}

@media (min-width: 1025px) {
    .wp-pagenavi { margin-top: 70px; }
}



/**
 * Sliders/Carousels
 * Slick Slider - http://kenwheeler.github.io/slick/
 */

/* General styling */

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-slide,
.slick-arrow,
.slick-dots button,
.slick-slide:focus * {
	outline: none !important;
}

.slick-initialized .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: top;
}

/* Preload affect */

.slick-slider .slide { display: none; }

.slick-slider .slide:first-child { display: block; }

.slick-slider.slick-initialized .slide { display: block; }

.js-slider-has-preloader { /* Add this class to your slider */
	min-height: 50px;
	position: relative;
}

.js-slider-has-preloader:before {
	content: url('../img/loading.gif'); /* Create and upload a loading gif to your image directory */
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px; /* Update width based on gif size */
	height: 50px; /* Update height based on gif size */
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
}


/* Slick Dots */

.slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
}

.slick-dots li:only-child { display: none; }

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
}


/* Arrows */

.slick-arrow {
    font-size: 0;
    border: 0;
    width: 41px;
    height: 40px;
    background-color: rgba(66,79,132,.90);
    position: absolute;
    top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
    /*right: 22px;*/
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
         align-content: center;
     -webkit-box-align: center;
        -ms-flex-align: center;
           align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;

    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

 	-webkit-box-shadow: 0px 0px 10px rgba(1,8,23,0.1);
            box-shadow: 0px 0px 10px rgba(1,8,23,0.1);
}

    .slick-arrow:before {
        font-family: 'icomoon' !important;
        color: #fff;
        font-size: 16px;
    }

    .slick-arrow:hover { background-color: rgb(66,79,132); }

.slick-prev { left: -22px; }

.slick-next { right: -22px; }

    .slick-prev:before { content: "\e90c"; }

    .slick-next:before { content: "\e90b"; }

.intro-gallery-slider .slick-prev {
    left: -60px;
}

/* Custom styling per slider/carousel */

.masthead--slideshow .slick-list { width: 100%; }

.masthead--slideshow--buttons { position: relative; }

	.masthead--slideshow--buttons .slick-arrow {
	    width: 46px;
	    height: 45px;
		top: -600px;
		right: 20px;
	}

	.masthead--slideshow--buttons .slick-prev {
		right: 70px;
		left: auto;
	}

/* saf3+, chrome1+ browsers */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .masthead--slideshow--buttons .slick-arrow { top: -590px; }
}

@media (min-width: 768px) {
    .slick-arrow {
        width: 52px;
        height: 50px;
    }

        .slick-arrow:before { font-size: 18px; }

	.masthead--slideshow--buttons .slick-arrow {
		bottom: 50px;
		top: auto;
	}
}

@media (min-width: 1025px) {
	.masthead--slideshow--buttons .slick-arrow {
        width: 58px;
        height: 56px;
        right: 50px;
    }

	.masthead--slideshow--buttons .slick-prev { right: 115px; }
}



/**
 * Fancy Box/Lightbox Popup
 * Fancybox - http://fancyapps.com/fancybox/
 */

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: -moz-linear-gradient(top,  rgba(66,79,132,0) 0%, rgba(53,63,106,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(66,79,132,0) 0%,rgba(53,63,106,1) 100%);
    background: linear-gradient(to bottom,  rgba(66,79,132,0) 0%,rgba(53,63,106,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00424f84', endColorstr='#353f6a',GradientType=0 );

    bottom: 0;
    color: #eee;
    font-size: 18px;
    font-weight: 700;
    left: 0;
    line-height: 1.5em;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}



 /**
 * Posts
 * Used on blog, category, archive and search results pages
 */

.post-item {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
}

.post-item:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.post-item__heading a {
    text-decoration: none;
}

.post-item .btn,
.post-item .btn-primary {
    margin-top: 30px;
}

.post-item__meta {
    font-size: .8em;
}

@media (min-width: 1025px) {

    .post-item {
        padding-top: 50px;
        margin-top: 50px;
    }

}




/**
 * Tabs
 * In use on search.php template by default.
 * Use as base for any other tabs on the site.
 */

.tab {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
    display: block;
}

.tab > a {
    display: block;
    padding: 10px 35px;
    text-decoration: none;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 1px 1px 0 0;
    color: inherit;
    font-weight: bold;
}

.tab-active > a {
    border-bottom: 1px solid #fff;
}

.tab-active > a,
.tab:hover > a,
.tab:focus > a {
    color: inherit;
    background: #fff;
    text-decoration: none;
}

.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
}

.accordion-tabs {
    position: relative;
}

.tab-active {
    display: block;
}

.tab.show { display: block !important; }

@media (min-width: 1025px ) {
    .tab-content {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
    }

    .tab {
        display: inline-block;
    }

    .tab.show { 
        display: inline-block !important; 
    }
}




/**
 * Social Share
 * Used in single.php by default
 * Make any additional customizations here https://sharingbuttons.io/
 */

.social-share-row {
    margin: 0;
    padding: 0 !important; /* get rid of default <ul> padding */
    list-style: none !important; /* get rid of list bullets */
}

.social-share-row__item {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    padding-left: 0 !important;
}

.social-share-row__item:before { display: none !important; }

.resp-sharing-button__link,
.resp-sharing-button__icon {
    /*display: inline-block;
    vertical-align: middle;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
         align-content: center;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
}

.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
    margin: 0.5em;
}

.social-share-row__item:first-child .resp-sharing-button__link {
    margin-left: 0;
}

.resp-sharing-button__link:hover { border-bottom: none !important; }

.resp-sharing-button {
    border-radius: 50%;
    -webkit-transition: 25ms ease-out;
    	 -o-transition: 25ms ease-out;
    		transition: 25ms ease-out;
    padding: 0.5em;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    height: 38px;
    width: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
         align-content: center;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
}

.resp-sharing-button__icon svg {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: top;
}

.resp-sharing-button--small svg {
    margin: 0;
    /*vertical-align: middle*/
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
    stroke: #fff;
    fill: none;
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none;
}

.resp-sharing-button--linkedin {
    background-color: #0077b5;
    border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
    background-color: #046293;
    border-color: #046293;
}

.resp-sharing-button--facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
    background-color: #2d4373;
    border-color: #2d4373;
}

.resp-sharing-button--twitter {
    background-color: #55acee;
    border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
    background-color: #2795e9;
    border-color: #2795e9;
}

.resp-sharing-button--pinterest {
    background-color: #bd081c;
    border-color: #bd081c;
}

.resp-sharing-button--pinterest:hover,
.resp-sharing-button--pinterest:active {
    background-color: #8c0615;
    border-color: #8c0615;
}

.resp-sharing-button--email {
    background-color: #777;
    border-color: #777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
    background-color: #5e5e5e;
    border-color: #5e5e5e;
}





/* --------------------------------------------------*\
    UI
    UI peices are site specific non generic styles.
    eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/

/**
 * Page-head
 */

.page-header {
    display: block;
    padding: 8px 0;
    -webkit-box-shadow: rgba(1,8,23,0.1) 0 0 20px;
       -moz-box-shadow: rgba(1,8,23,0.1) 0 0 20px;
            box-shadow: rgba(1,8,23,0.1) 0 0 20px;
    z-index: 9999;
}

.page-header--sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

    .search-form form { display: none; }

    .search-btn {
        float: right;
        text-align: center;
        color: #231F20;
        font-size: 12px;
        font-weight: 700;
        top: 5px;
    }

    .search-btn.close {
        width: auto;
        height: 26px;
    }

        .search-btn:hover { text-decoration: none; }

        .search-btn .icon-search { 
            display: block; 
            font-size: 18px;
            width: auto;
            height: 24px /*26px*/;
        }

        .search-btn .icon-search:hover { color: #9d2235; }

        .search-btn.close .icon-search:after {
            content: '';
            height: 26px;
            border-left: 2px solid #231F20;
            position: absolute;
            transform: rotate(48deg);
            left: 30px;
            top: -2px;
        }

        .search-btn.close .icon-search:before {
            content: '';
            height: 26px;
            border-left: 2px solid #231F20;
            position: absolute;
            transform: rotate(-48deg);
            left: 30px;
            top: -2px;
        }

        .search-btn .icon-search:hover:before,
        .search-btn .icon-search:hover:after { border-color: #9d2235; }

        .search-area { position: inherit !important; }

        .search-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 9;
            background: #fff;
            width: 100%;
            padding: 30px;
            border-top: #9D2235 solid 4px;
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            display: none;
            text-align: left;
        }

            .search-dropdown form {
                margin-top: 10px;
                display: block;
            }

            .search-btn { 
                z-index: 9; 
                position: relative;
                outline: none!important;
            }

            .search-dropdown input[type="text"] {
                border: #AFAFAF solid 1px;
                padding: 10px;
                font-size: 16px;
                font-weight: 400;
            }

            .search-dropdown button {
                background-color: #9D2235;
                color: #fff;
                padding: 7px 14px;
                margin-left: -6px;
                height: 42px;
                position: relative;
                top: -1px;
            }

    .header-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background-color: #fff;
        border-top: #d6d6d6 solid 1px;
    }

        .header-btn a {
            font-size: 12px;
            float: left;
            font-weight: 700;
            text-align: center;
            line-height: 1.25em; /*15px*/
            height: 56px;
        }

        .header-btn a.btn {
            font-size: 15px;
            width: 50%;
        }

        .header-btn a:not(.btn) {
            padding-top: 10px;
            width: 27%;
        }

            .header-btn a:hover { text-decoration: none; }

            .header-btn a span { font-size: 20px; }

        .header-phone {
            border-right: #d6d6d6 solid 1px;
            border-left: #d6d6d6 solid 1px;
            color: #9D2235;
        }

       .mobile-menu {
            color: #231F20;
            display: inline-block;
            font-weight: 700;
            font-size: 12px;
            margin-left: 24px;
            cursor: pointer;
            line-height: 10px;
            padding-top: 6px;
            text-align: center;
        }

        .mobile-menu.close {
            position: relative;
            width: 34px;
            height: 40px;
        }

            .mobile-menu span {
                font-size: 30px;
                display: block;
                height: 30px;
            }

            .mobile-menu.close .icon-menu:after {
                content: '';
                height: 32px;
                border-left: 2px solid #231F20;
                position: absolute;
                -webkit-transform: rotate(53deg);
                    -ms-transform: rotate(53deg);
                        transform: rotate(53deg);
                left: 15px;
                top: 3px;
            }

            .mobile-menu.close .icon-menu:before {
                content: '';
                height: 32px;
                border-left: 2px solid #231F20;
                position: absolute;
                -webkit-transform: rotate(-53deg);
                    -ms-transform: rotate(-53deg);
                        transform: rotate(-53deg);
                left: 15px;
                top: 3px;
            }

        .header-btn .header-contact-btn {
            width: 46%;
            float: left;
            font-size: 15px;
            font-weight: 800;
            padding: 1.4em 0; /*21px*/
        }

        .site-logo img {
        	max-width: 200px;
        	width: 200px;
        }


@media (min-width: 768px) {
    .site-logo img {
    	max-width: none;
    	width: auto;
    }

    .header-btn {
        position: relative;
        border-top: 0;
        float: right;
        width: 350px;
        padding-top: 20px;
        z-index: 1;
    }

        .header-btn a {
            height: auto;
            width: auto;
            margin: 0 8px;
        }

        .header-btn a.btn,
        .header-btn a:not(.btn) { width: auto; }

        .header-btn .header-contact-btn {
            width: auto;
            padding: 0.867em 1.733em; /*13px 26px base 15px*/
            margin-left: 1.667em; /*25px*/
        }

        .header-btn .mobile-menu {
            padding-top: 0;
            position: relative;
            right: -64px;
        }

        .header-btn .header-phone {
            border: 0;
            font-size: 14px;
            margin-top: 4px;
            margin-left: -12px;
        }

            .header-btn .header-phone span { font-size: 13px; }

    .search-form {
        float: right;
        position: relative;
        z-index: 9;
    }

        .search-btn {
            margin-top: 15px;
            line-height: 21px;
            left: -52px;
            position: relative;
        }

    .mobile-menu {
        margin-left: 7px; 
        position: relative;
        margin-top: -3px;
    }

    .mobile-menu.close .icon-menu:before,
    .mobile-menu.close .icon-menu:after { top: 0; }

        .mobile-menu span { height: 34px; }
}

@media (min-width: 1025px) {
	.header-phone {
		margin-left: 0;
		margin-right: 25px;
	}

    .header-btn .header-contact-btn { padding: 0.882em 1.765em; /*15px 30px*/ }
}

@media(min-width: 1200px) {
    .search-area { position: relative !important; }

    .search-dropdown { top: 0; }

    .search-btn {
        right: 0;
        left: 0;
    }

    .header-btn { width: 298px; }

    .mobile-menu { display: none; }

    .page-header .col-md-9 { padding: 0 0 0 20px; }
}

@media (min-width: 1310px) {
    .page-header {
        width: 100%;
        height: 103px;
        top: 0;
        left: 0;
    }

    .header-btn {
        width: 300px;
        background-color: transparent;
        padding-top: 20px;
    }

    .search-btn {
        left: 0;
        font-size: 0;
        margin-top: 28px;
    }
}

@media (min-width: 1366px) {
    .search-btn.close .icon-search:before,
    .search-btn.close .icon-search:after {
        left: 15px;
        top: -2px;
    }

    .search-btn,
    .search-btn.close { width: 36px; }
}


/* Fix sticky header position for when admin bar visible
   TODO: Uncomment if design has sticky header */

.admin-bar .page-header { top: 32px; }

@media screen and (max-width: 782px) {
    .admin-bar .page-header { top: 46px; }
} 

@media (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), 
	   (-webkit-min-device-pixel-ratio: 2) and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), 
	   (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 1024px) {

	.site-logo img { display: none; }

	.site-logo {
		background: url('../img/logo@2x.png') no-repeat left center;
		background-size: contain;
		display: inline-block;
		max-width: 262px;
		width: 100%;
		height: 78px;
	}
}

@media (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2) and (max-width: 767px), 
	   (-webkit-min-device-pixel-ratio: 2) and (-o-min-device-pixel-ratio: 2/1) and (max-width: 767px), 
	   (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 767px) {

	.site-logo img { display: none; }

	.site-logo {
		background: url('../img/logo-mobile.png') no-repeat left center;
		background-size: contain;
		display: inline-block;
		max-width: 154px;
		width: 100%;
		height: 46px;
	}
}


@media( min-width: 1025px ) {
    .sticky-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 125px; /* TODO: update to match how far down page when sidebar should stick */
    }
}



/**
 * Navigation
 */

/* General Styling */

.nav-primary {
    display: none;
    position: fixed;
    bottom: 57px;
    width: 100%;
    left: 0px;
    background: #fff;
    z-index: 99;
    height: calc(100% - 126px);
    overflow: scroll;
}

.nav-primary ul,
.nav-primary li {
    padding: 0;
    margin: 0;
}

.nav-primary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-primary li {
    cursor: pointer;
    position: relative;
    border-top: #E6E6E6 solid 1px;
}

.nav-primary li:before,
.nav-primary li:after {
    display: none; /* hide any custom bullet styling */
}

.nav-primary a {
    display: block;
    text-decoration: none;
    padding: 14px 22px;
    font-size: 15px;
    text-transform: uppercase;
    color: #231F20;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-primary a:not(.btn):hover { border-bottom: none; }

.nav-primary .current-menu-item > a {
	background-color: #F2F2F2;
	color: #9D2235;
}

/* 1st Level */

.nav-primary .sub-menu { border-top: #E6E6E6 solid 1px; }

.nav-primary .sub-menu li { 
	border-top: none; 
	display: block !important;
}

.nav-primary .sub-menu-toggle {
	position: absolute;
	right: 0;
	top: 4px;
	width: 45px;
	height: 45px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	     align-content: center;
	-webkit-box-align: center;
	   -ms-flex-align: center;
	      align-items: center;
	-webkit-box-pack: center;
	   -ms-flex-pack: center;
	 justify-content: center;
	-webkit-transition: all .3s ease-in-out;
	     -o-transition: all .3s ease-in-out;
	        transition: all .3s ease-in-out;
}

.nav-primary .sub-menu-toggle.js-toggled {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}


/* Sub Menus */
.nav-primary .sub-menu,
.nav-primary .sub-menu ul { display: none; }

.sub-menu.js-toggled { display:block; }

.sub-menu ul.js-toggled { max-height: 55em; }

.nav-primary .sub-menu {
    width: 100%;
    padding: 10px 0;
    -webkit-transition: 0.4s;
       -moz-transition: 0.4s;
    		transition: 0.4s;
}

.nav-primary .sub-menu a {
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: capitalize;
	padding: 7px 25px;
    margin-right: 0;
    font-size: 14px;
}


/* 3rd Level Sub Menus */
.nav-primary .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

@media (min-width: 768px) {
    .nav-primary {
        position: absolute;
		top: 93px;
		height: 100vh;
		left: 6px;
		bottom: 0;
		overflow-y: auto;
    }
}

@media (min-width: 1200px) {
    .nav-primary {
        position: static;
        height: auto;
        display: inline-block !important;
        margin-top: 28px;
        text-transform: uppercase;
        width: auto;
        background-color: transparent;
        position: relative;
        top: 0;
        overflow: inherit;
    }

    .nav-primary li { 
    	border-top: 0; 
    	display: inline-block !important;
    }

        .nav-primary .menu-item-has-children:hover > ul { display: block; }

        .nav-primary li:hover > .sub-menu-toggle,
        .current-menu-item > .sub-menu-toggle  { color: #c75427; }

        .nav-primary .sub-menu {
            position: absolute;
            top: 100%;
            left: -15%;
            width: 300px;
            border-top: 5px solid #9D2235;
            background-color: #fff; 
            padding: 10px 0;
        }

        	.nav-primary .sub-menu:before {
        		content: "";
				position: absolute;
				top: -24px;
				left: 10%;
				margin-left: -5px;
			    border-width: 10px;
			    border-style: solid;
			    border-color: transparent transparent #9D2235 transparent;
        	}

        .nav-primary a {
            font-weight: 700;
            font-size: 13px;
            color: #231F20;
            margin-right: 11px;
            border-top: 0;
            padding: 0 0 37px;
        }

            .nav-primary li:hover > a,
            .nav-primary .current-menu-item > a,
            .nav-primary .current-menu-parent > a,
            .nav-primary .current-menu-ancestor > a { 
            	background-color: transparent !important;
            	color: #9D2235;
            }

            .nav-primary .sub-menu a:hover,
            .nav-primary .sub-menu .current-menu-item > a,
            .nav-primary .sub-menu .current-menu-parent > a,
            .nav-primary .sub-menu .current-menu-ancestor > a { text-decoration: underline; }


    .nav-primary .sub-menu-toggle {
        height: auto;
        font-size: 10px;
        font-weight: bold;
        top: 10px;
        right: -3px;
        width: auto;
    }

        .nav-primary .sub-menu-toggle:before {
            font-weight: 700;
            color: #8E8C8D;
        }

    .nav-primary .sub-menu a { font-size: 16px; }
}

@media (min-width: 1366px) {
    .nav-primary a {
        margin-right: 28px;
        font-size: 14px;
    }

    .nav-primary .sub-menu-toggle { right: 13px; }
}


/**
 * Masthead
 */

.slick, .slick-wrapper {
    width: 100%;
}

.masthead {
	display: block;
	z-index: 5;
}

.masthead h1,
.masthead .h1 { margin-bottom: 0; }

.masthead--slideshow img { height: 206px; }

    .slide-content {
        background-color: #231F20;
        padding: 40px 0 50px;
        display: inline-block;
        color: #fff;
    }

        .slide-content .slide-content--title {
            color: #fff;
            font-size: 32px;
            line-height: 1.125em; /*36px*/
            text-transform: uppercase;
            border-bottom: #9D2235 solid 3px;
            display: inline-block;
            padding-bottom: 11px;
            margin-bottom: 0.2em;
        }

        .slide-content p { color: #fff; }

.masthead-inner {
    height: 100px;
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
         align-content: center;
     -webkit-box-align: center;
        -ms-flex-align: center;
           align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
     -ms-flex-wrap: wrap;
         flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

    .masthead-inner .masthead-bg {
        position: absolute;
        z-index: -1;
        bottom: 0;
    }

@media (max-width: 1024px) {
	.masthead--slideshow img {
		-o-object-fit: cover;
		object-fit: cover;
	}
}

@media (max-width: 767px) {
	.masthead--slideshow.slick-initialized .slick-slide { vertical-align: top; }
}

@media (min-width: 768px) {
	.masthead-content { position: relative; }

        .masthead-content:after {
            content: '';
            background: -moz-linear-gradient(top,  rgba(125,185,232,0) 0%, rgba(1,8,23,0.9) 100%);
            background: -webkit-linear-gradient(top,  rgba(125,185,232,0) 0%,rgba(1,8,23,0.9) 100%);
            background: linear-gradient(to bottom,  rgba(125,185,232,0) 0%,rgba(1,8,23,0.9) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#e6010817',GradientType=0 );
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            position: absolute;
            z-index: 1;
        }

		.masthead--slideshow img { height: 495px; }

			.slide-content {
				background-color: rgba(1,8,23,0.5);
				padding-left: 25px;
				padding-right: 25px;

				position: absolute;
				z-index: 10;
				bottom: 0;
				left: 0;
				width: 600px;
			}

				.slide-content .slide-content--title {
					font-size: 38px;
					line-height: 1.105em; /*42px*/
				}

    .masthead-inner { height: 160px; }

    .masthead-inner h1,
    .masthead-inner .breadcrumbs { 
    	flex: 0 0 100%; 
    	margin-top: 10px;
        font-size: 64px;
    }
}

@media (min-width: 1025px) {
	.masthead--slideshow img { height: 967px; }

        .slide-content {
            display: none;
            -webkit-transition: all .3s ease-in-out;
                 -o-transition: all .3s ease-in-out;
                    transition: all .3s ease-in-out;
        }

        .slick-current .slide-content { display: inline-block; }

    	    .slide-content .slide-content--title {
    	    	font-size: 50px;
    	    	line-height: 1.240em; /*62px*/
    	    }

    .masthead-inner { height: 300px; }
}

@media (min-width: 1366px) {
	.slide-content {
		width: 720px;
		padding: 64px 52px;
	}

		.slide-content .slide-content--title {
			font-size: 74px;
			line-height: 1.027em; /*76px*/
		}
}


/**
 * Sidebar
 */

.page-sidebar { margin-top: 50px; }

.page-sidebar ul li:before { margin-left: 0; }

.sidebar-map {
    width: 100%;
    height: 246px;
    display: block;
    position: relative;
}

.sidebar-map img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1025px) {
    .page-sidebar {
        margin-top: 0;
        margin-left: 18px;
    }

    .page-sidebar-contact h4 {
        padding-bottom: 20px;
    }
}


/* Blog Sidebar */

.blog .page-sidebar .widget { margin-bottom: 50px; }


/* Intro Section */
.intro-section {
    position: relative;
    z-index: 0;
}

.intro-text-bgimg {
    height: 65%;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    -o-object-position: right;
       object-position: right;
}

.intro-img-gallery-description {
    margin-top: 30px;
}

@media (min-width: 768px) and (max-width: 1025px) {
    .intro-section .container { padding-left: 0; }
}

@media (min-width: 768px) {
    .intro-section .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: stretch;
             align-content: stretch;
         -webkit-box-align: stretch;
            -ms-flex-align: stretch;
               align-items: stretch;
        -webkit-box-pack: center;
           -ms-flex-pack: center;
         justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .intro-section--img { 
		height: 100%; 
		position: relative; 
        max-height: 350px;
	}

    .intro-section--img img {   
		width: 90%;
		height: 100%;
		object-position: top center;
	}

    .intro-section--text .page-article { margin-left: 12px; }
}

@media (min-width: 1025px) {
    .intro-section .row {
         -webkit-box-align: center;
            -ms-flex-align: center;
               align-items: center;
    }

    .intro-section--text .page-article {
        margin-left: 42px;
        padding-top: 25px;
    }

    .intro-text-bgimg { height: auto; }
}



/* Image Buttons */

.image-btn {
	display: block;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;

	-webkit-transition: all .3s ease-in-out;
	     -o-transition: all .3s ease-in-out;
	        transition: all .3s ease-in-out;
}

	.image-btn:hover {
		-webkit-box-shadow: #666 0px 0px 10px;
		   -moz-box-shadow: #666 0px 0px 10px;
				box-shadow: #666 0px 0px 10px;
		border-bottom: none !important;
	}

	.image-btn:hover img {
		-webkit-filter: blur(2px);
		   -moz-filter: blur(2px);
				filter: blur(2px);
	}
    
    .image-btn-title {
        background-color: #231F20;
        position: relative;
        padding: 12px 60px 12px 20px;
        opacity: 1;

    	-webkit-transition: all .3s ease-in-out;
    	     -o-transition: all .3s ease-in-out;
    	        transition: all .3s ease-in-out;
    }

        .image-btn-title .step,
        .image-btn-content-title .step {
            color: rgba(255,255,255,.50);
            font-size: 13px;
	        font-weight: 800;
	        text-transform: uppercase;
        }

        .image-btn-title .title,
        .image-btn-content-title .title {
            color: #fff;
            display: block;
            font-size: 16px;
	        font-weight: 800;
	        text-transform: uppercase;
            line-height: 1.25em; /*20px*/
            letter-spacing: 0.06em;
        }

        .image-btn-content-title .title { font-size: 20px; }

        .image-btn-title .arrow {
            background-color: #9D2235;
            color: #fff;
            text-align: center;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
               -ms-flex-align: center;
                  align-items: center;
            -webkit-box-pack: center;
               -ms-flex-pack: center;
             justify-content: center;

            position: absolute;
            z-index: 0;
            width: 40px;
            height: 100%;
            right: 0;
            top: 0;
        }

        .image-btn-title .arrow:before {
        	font-size: 16px;
        	position: relative;
        	left: -3px;
        }

        .image-btn-title .arrow:after {
        	content: '';
        	background-color: #9D2235;
        	width: 120%;
        	height: 100%;
        	position: absolute;
        	top: 0;
        	right: 1px;
        	z-index: -1;
        	-webkit-transform: skewX(-11deg);
        	    -ms-transform: skewX(-11deg);
        	        transform: skewX(-11deg);
        }

    .image-btn-content {
    	background-color: rgba(1,8,23,0.75);
    	font-size: 11px;
    	line-height: 1.8em;

    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-ms-flex-line-pack: center;
    	     align-content: center;
    	-webkit-box-align: stretch;
    	   -ms-flex-align: stretch;
    	      align-items: stretch;
    	overflow: hidden;

    	opacity: 0;

    	position: absolute;
    	top: 0;
    	width: 100%;
    	height: 100%;
    	padding: 20px;

    	-webkit-transition: all .3s ease-in-out;
    	     -o-transition: all .3s ease-in-out;
    	        transition: all .3s ease-in-out;
    }

    .image-btn-content-title { 
    	width: 100%; 
    	text-align: left;
    }

    .image-btn-content p { 
    	color: #fff; 
    	font-size: 14px;
    	text-align: left !important;
    }

    .image-btn-content ul,
    .image-btn-content ol {
    	color: #fff;
    	padding-left: 5px;
    }

    .image-btn-content li { margin-bottom: 8px; }

    .image-btn-content li:last-child { margin-bottom: 0; }

    .image-btn-content li:before { color: #fff !important; }


	.image-button h2,
	.image-button h4,
	.image-button p { text-align: center; }

@media (max-width: 767px) {
	.image-btn { height: 282px; }

	.image-btn-title { opacity: 0; }

	.image-btn-content { opacity: 1; }
}

@media (min-width: 768px) {
	.image-btn { height: 351.2px; }

    .image-button-slider { margin-right: -22px; }

	    .slick-arrow.slick-disabled {
		    background: #ebebeb;
		    cursor: default;
		}

        .image-button-slider .slick-arrow {
            top: -50px;
            right: 50px;
        }

        .image-button-slider .slick-prev {
            left: auto;
            right: 95px;
        }

        .image-btn-title {
            background-color: rgba(35,31,32,0.9);
            width: 100%;
            position: absolute;
            left: 0;
            bottom: 0;
        }
}

@media (min-width: 1025px) {
	.image-button h2,
	.image-button h4,
	.image-button p { text-align: left; }

    .image-button h2 { margin-bottom: 40px; }

    .image-btn-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-line-pack: center;
             align-content: center;
        -webkit-box-align: center;
           -ms-flex-align: center;
              align-items: center;
        -webkit-box-pack: center;
           -ms-flex-pack: center;
         justify-content: center;
    }

    .image-button.inner .image-btn-content {
        -webkit-box-align: center;
           -ms-flex-align: center;
              align-items: center;
    }

	.image-btn:hover .image-btn-content { opacity: 1; }

	.image-btn:hover .image-btn-title { opacity: 0; }

		.image-btn-content .border-left { padding-left: 20px; }

		.image-btn-content .border-left:after { height: 110%; }

		.image-btn-content .border-bottom:before {
			left: -30px;
			width: 122%;
		}

    .image-btn-content li { margin-bottom: 7px; }
}

@media (min-width: 1200px) {
	.image-btn-content { font-size: 14px; }

		.image-btn-title { padding: 20px 70px 20px 30px; }

		.image-btn-content .border-bottom:before { left: -40px; }

			.image-btn-title .step,
			.image-btn-content-title .step { font-size: 16px; }

			.image-btn-title .title,
			.image-btn-content-title .title { font-size: 18px; }

			.image-btn-content-title .title { font-size: 30px; }

			.image-btn-title .arrow { width: 60px; }

				.image-btn-title .arrow:before { font-size: 25px; }

			.image-btn-content { padding-left: 30px; }

                .image-btn-content li { margin-bottom: 15px; }
}

@media (min-width: 1366px) {
	.image-btn-content {
		font-size: 16px;
		line-height: 1.2em;
	}

		.image-btn-content li:before { margin-top: -3px; }
}

/*Home CTA*/

.home-cta {
	position: relative;
	z-index: 0;
    padding: 56px 0;
    overflow: hidden;
}

.home-cta .home-cta-imgbg {
	position: absolute;
	bottom: 0;
	left: -20%;
	z-index: -1;
    object-position: left;
}

	.home-cta .border-bottom { margin-bottom: 0; }

		.home-cta h4 {
		    color: #424F84;
		    font-size: 18px;
		    font-weight: bold;
		    letter-spacing: 0.02em;
		    line-height: 1.333em; /*24px*/
		    text-transform: none;
		}

		.home-cta .col-sm-4.hard-sm-sides { margin-top: 20px; }

@media (min-width: 768px) and (max-width: 1024px) {
    .home-cta .col-sm-11 { margin-left: 20px; }
}

@media (min-width: 768px) {
    .home-cta-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: center;
             align-content: center;
        -webkit-box-align: center;
           -ms-flex-align: center;
              align-items: center;
    } 

	    .home-cta .col-sm-4.hard-sm-sides {  margin-top: 0; }

	    	.home-cta .home-cta-imgbg { left: 0; }

	        .home-cta .border-bottom:before {
	            width: 106%;
	            left: -20px;
	        }

	        .home-cta .border-left:after {
	            height: 210%;
	            bottom: -70px;
	        }

	        .home-cta h4 {
	            font-size: 20px;
	            line-height: 1.3em; /*26px*/
	        }

	        .home-cta .btn {
	            padding-left: 1.567em; /*13px*/
	            padding-right: 1.567em; /*13px*/
	        }
}

@media (min-width: 1025px) {
    .home-cta h4 {
        font-size: 26px;
        padding-right: 30px;
    }

    .home-cta .border-bottom:before {
        width: 97%;
        left: -45px;
    }

    .home-cta .border-left:after {
        height: 240%;
        bottom: -106px;
    }

    .home-cta.page-content {
        padding-top: 105px;
        padding-bottom: 105px; 
    }
}

@media (min-width: 1366px) {
    .home-cta .border-left:after { height: 318%; }
}


/*Services*/

.services-list { text-align: center; }

.services-list [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.services-list a {
    font-size: 14px;
    font-weight: 800;
    line-height: 24px;
    margin-top: 26px;
    display: block;
    color: #424F84;
    text-transform: uppercase;
    text-align: center;
}

    .services-list a:hover {
    	color: #9D2235;
        border-bottom: none;
    	text-decoration: none;
    }

    .services-list-icon {
    	background-color: #E0E0E0;
    	width: 80px;
    	height: 80px;
    	margin: 0 auto 20px;
    	padding: 19px 17px;

    	display: flex;
    	-ms-flex-line-pack: center;
    	     align-content: center;
    	 -webkit-box-align: center;
    	    -ms-flex-align: center;
    	       align-items: center;
    	-webkit-box-pack: center;
    	   -ms-flex-pack: center;
    	 justify-content: center;

	    -webkit-transition: all .3s ease-in-out;
	         -o-transition: all .3s ease-in-out;
	            transition: all .3s ease-in-out;
    }

    	.services-list a:hover .services-list-icon {
    		background-color: #fff;
    		-webkit-box-shadow: 0px 0px 10px rgba(1,8,23,0.1);
    		        box-shadow: 0px 0px 10px rgba(1,8,23,0.1);
    	}

    	.services-list-icon img {
    		-webkit-filter: grayscale(100%);
    		        filter: grayscale(100%);

			max-height: 100%;
			width: auto;
    	}

    	.services-list a:hover .services-list-icon img {
    		-webkit-filter: grayscale(0);
    		        filter: grayscale(0);
    	}

@media (max-width: 767px) {
	.services-list-icon .img-responsive {
		max-height: 100%;
		width: auto;
	}
}

@media (min-width: 768px) {
	.services-list a { font-size: 16px; }

		.services-list-icon {
			width: 90px;
			height: 90px;
		}
}

@media (min-width: 1025px) {
	.services-list a { font-size: 18px; }

		.services-list-icon {
			width: 120px;
			height: 120px;
			padding: 29px 26px;
		}
}


/*  */
.content-with-floatingimg { position: relative; }

	.content-with-floatingimg .objectfit {
		position: absolute;
		z-index: -1;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 70%;
		padding: 0;
		opacity: 0.8;
	}

@media (min-width: 768px) {
	.content-with-floatingimg .row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		   -ms-flex-align: stretch;
		      align-items: stretch;
		-ms-flex-line-pack: stretch;
		     align-content: stretch;
		-webkit-box-pack: end;
		   -ms-flex-pack: end;
		 justify-content: end;
	}

		.content-with-floatingimg .objectfit {
			left: -33%;
			z-index: 0;
            -o-object-fit: contain;
               object-fit: contain;
            -o-object-position: bottom;
			   object-position: bottom;
		}
}

@media (min-width: 1025px) {
	.content-with-floatingimg .objectfit {
		height: 110%;
		-o-object-fit: contain;
		   object-fit: contain;
		top: -10%;
		width: 100%;
	}

    .content-with-floatingimg:before  {
        background-color: rgba(249,249,249,0.6);
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
    }
}

@media (min-width: 1400px) {
	.content-with-floatingimg .objectfit {
		height: 110%;
		top: -13%;
	}
}


/* Featured Gallery*/

.featured-gallery { text-align: center; }

	.featured-gallery p { margin-bottom: 0.5em; }

    .gallery-slide { margin-top: 26px; }

    .gallery-slide .slick-list {
    	padding-top: 45px !important;
    	padding-bottom: 45px !important;
    }

        .gallery-slide .slick-prev { left: 8px; }

        .gallery-slide .slick-next { right: 8px; }

        .gallery-slide .slick-slide {
            margin: 0 0.8%;
            -webkit-transition: all .3s ease-in-out;
                 -o-transition: all .3s ease-in-out;
                    transition: all .3s ease-in-out;
        }

        .gallery-slide .slick-slide:hover,
        .gallery-slide .gallery-button-item:hover { border-bottom: none; }

        .gallery-slide .slick-active {
            -webkit-transform: scale(1.25);
               -moz-transform: scale(1.25);
                    transform: scale(1.25);
        }

            .gallery-slide .slick-slide .objectfit {
                width: 250px;
                height: 216px;
            }

@media (max-width: 1024px) {
	.featured-gallery + .featured-gallery { padding-top: 0; }
}

@media (min-width: 768px) {
	.featured-gallery { text-align: center; }

	.featured-gallery .col-sm-7 { text-align: left; }

		.gallery-slide .slick-arrow { top: 45%; }

		.gallery-slide .slick-prev { left: 68px; }

	    .gallery-slide .slick-next { right: 68px; }

            .gallery-slide .slick-slide .objectfit {
                width: 536px;
                height: 366px;
            }
}

@media (min-width: 1025px) {
    .featured-gallery { text-align: left; }

	.gallery-button { margin-top: -80px; }

		.gallery-button [class*="col-"] {
			padding-left: 4px;
			padding-right: 4px;
		}

		.gallery-button [class*="col-"]:nth-child(2) { margin-bottom: 6px; }

		.gallery-button .image-big { height: 435px; }
		.gallery-button .image-small { height: 215px; }

		.gallery-button-item {
			display: block;
			position: relative;
			overflow: hidden;
			height: 100%;
		}

			.gallery-button-item-content {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;

				background: -moz-linear-gradient(top,  rgba(125,185,232,0) 0%, rgba(1,8,23,0.9) 100%);
				background: -webkit-linear-gradient(top,  rgba(125,185,232,0) 0%,rgba(1,8,23,0.9) 100%);
				background: linear-gradient(to bottom,  rgba(125,185,232,0) 0%,rgba(1,8,23,0.9) 100%);
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#e6010817',GradientType=0 );
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-ms-flex-line-pack: flex-end;
				     align-content: flex-end;
				-webkit-box-align: flex-end;
				   -ms-flex-align: flex-end;
				      align-items: flex-end;
				-ms-flex-wrap: wrap;
				    flex-wrap: wrap;
				padding: 36px;
				opacity: 0;
				-webkit-transition: all .3s ease-in-out;
				     -o-transition: all .3s ease-in-out;
				        transition: all .3s ease-in-out;
			}

			.gallery-button-item:hover .gallery-button-item-content { opacity: 1; }

				.gallery-button-item-content:before {
					content: '';
					width: calc(100% - 30px);
					height: calc(100% - 30px);
					display: block;
					border: 2px solid #9D2235;
					top: 15px;
					left: 15px;
					position: absolute;
				}

				.gallery-button-item-content > * {
					color: #fff !important;
					-webkit-box-flex: 0;
					    	-ms-flex: 0 0 100%;
					        	flex: 0 0 100%;
				}

				.gallery-button-item-content h4 { font-size: 18px; }
}


/* Featured Testimonials*/

.featured-testimonials { text-align: center; }

	.featured-testimonials-slider {
		margin-top: 46px;
		text-align: left;
	}

        .featured-testimonials-slider:before {
            color: #E6E6E6;
            content: '“';
            font: 700 140px/1em 'Mulish', sans-serif;
            position: absolute;
            left: 13px;
            top: -40px;
            z-index: 5;
        }

	.featured-testimonial--testimonial {
		border-radius: 0 0 50px 0;
		/*-webkit-box-shadow: 0px 0px 20px rgba(66,79,13,0.1);
	            box-shadow: 0px 0px 20px rgba(66,79,13,0.1);*/
		border-left: 0;
		border-bottom: 5px solid #424F84;
	    color: #505050;
		margin: 0 0 32px;
		padding: 40px 20px;
        display: flex;
        align-items: center;
	}

		.featured-testimonial--testimonial:before { content: ''; }

        .featured-testimonial--testimonial:after {
            content: '';
            width: 0;
            height: 0;
            border: 0 solid transparent;
            border-left-width: 0px;
            border-right-width: 16px;
            border-top: 10px solid #424F84;
            
            position: absolute;
            left: 0;
            bottom: -14px;
        }

		.featured-testimonial--position {
			color: #505050;
			font-size: 14px;
			font-weight: 400;
			letter-spacing: 0.02em;
			text-transform: none;
		}

@media (max-width: 767px) {
    .featured-testimonials-slider .slick-arrow {
        top: auto;
        bottom: 14px;
        right: 0;
    }

    .featured-testimonials-slider .slick-prev {
        right: 45px;
        left: auto;
    }

        .featured-testimonial--author { width: 65%; }

	   .featured-testimonial--position { display: block; }
}

@media (min-width: 768px) {
	.featured-testimonials { text-align: center; } 

    .featured-testimonials-slider:before { left: 45px; }

	.featured-testimonials-slider .slick-arrow { top: 30%; }

	.featured-testimonial--testimonial { padding: 45px 55px; }

    .featured-testimonial--author,
    .featured-testimonial--position { font-size: 16px; }

    	.featured-testimonial--position:before {
    		content: '|';
    		left: 46px;
    		padding-left: 10px;
    		padding-right: 10px;
    	}
}

@media (min-width: 1025px) {
    .featured-testimonials { text-align: left; } 

    .featured-testimonials .btn-tertiary { font-size: 16px; }

    .featured-testimonial--author,
    .featured-testimonial--position { font-size: 18px; }
}


/**
 * Page-footer
 */

.page-footer {
    background-color: #EDEDED;
    color: #505050;
    text-align: center;
    padding: 70px 0;
}

.page-footer .logo-watermark { display: none; }

.page-footer ul { padding-left: 0; }

.page-footer a {
    color: #505050;
    font-weight: 400;
    text-decoration: none;
}

    .page-footer a:hover,
    .page-footer .current-menu-item > a,
    .page-footer .current-menu-parent > a,
    .page-footer .current-menu-ancestor > a { color: #9D2235; }

.page-footer [class*="icon-"]:before {
    color: #424F84;
    padding-right: 9px;
}

    .footer-navigation ul { margin-bottom: 34px; }

        .footer-navigation li {
            padding-top: 3px;
            padding-bottom: 3px;
        }

        .footer-navigation a {
            color: #505050;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
        }


    .page-footer-info { margin-bottom: 36px; }

        .page-footer-info p { margin-bottom: 12px; }

        .page-footer-info [class*="icon-"]:before { font-size: 17px; }

        .page-footer-info .icon-right-arrow:before {
            font-size: 10px;
            padding-right: 0;
            position: relative;
            margin-left: -10px;
        }


    .page-footer-logo {
        display: block;
        margin-bottom: 10px;
    }
        .page-footer-logo img { margin: 0 auto; }

    .page-footer-ceco-logo {
        font-size: 12px;
        color: #435084;
    }

        .page-footer-ceco-logo img {
            margin-top: 10px;
            margin-left: auto;
            margin-right: auto;
        }

    .footer-sub-navigation { font-size: 13px; }

        .footer-sub-navigation ul { margin-bottom: 22px; }

            .footer-sub-navigation li {
                display: inline-block;
                padding-left: 8px;
                padding-right: 8px;
            }


    .back-to-top a {
        cursor: pointer;
        color: #9D2235;
        font: 800 13px/2.154em 'Mulish'; /*28px*/
        text-transform: uppercase;
        -webkit-transition: all .3s ease-in-out;
             -o-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
    }

        .back-to-top .icon-up-arrow:before { color: #9D2235; }

        .back-to-top a:hover,
        .back-to-top a:hover .icon-up-arrow:before { color: #424f84; }

    .footer-social-icons, 
    .footer-social-icons li {
        margin: 0;
    }

    .footer-social-icons {
        display: flex;
        margin-bottom: 12px; 
		width: 90px;
		margin-left: auto;
		margin-right: auto;
    }

        .footer-social-icons li {
            margin-right: 9px;
        }

            .footer-social-icons a {
                font-size: 11px;
                width: 23px;
                height: 23px;
                display: flex;
                line-height: 1;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
                background: #435084;
                color: #fff;
            }

            .footer-social-icons a:hover {
                background: #9D2235;
                color: #fff;
            }

@media (min-width: 768px) {
    .page-footer {
        padding-top: 76px;
        padding-bottom: 76px;
        text-align: left;
        position: relative;
        z-index: 0;
    }

    	.footer-wrap {
    		max-width: 90% !important;
    		margin-top: 0 auto;
    	}

        .page-footer .logo-watermark {
            display: block;
            -o-object-fit: cover;
               object-fit: cover;
            height: 248px;
            position: absolute;
            z-index: -1;
            right: 0;
            bottom: 0;
            width: 520px;
        }

        .footer-navigation li {
            display: inline-block;
            padding-right: 42px;
        }

            .footer-navigation li:last-child { padding-right: 0; }

		.footer-social-icons { margin: 0 0 12px; }

        .page-footer-info {
            -webkit-column-count: 2;
               -moz-column-count: 2;
                    column-count: 2;
            width: 570px;
        }

            .page-footer-info p {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

            .page-footer-info p:last-child { margin-bottom: 0; }

        .page-footer-row-2 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-line-pack: center;
                 align-content: center;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            -webkit-box-align: end;
               -ms-flex-align: end;
                  align-items: end;
        }

            .page-footer-logo img { margin-left: 0; }

            .page-footer-ceco-logo img {
                margin-left: 0;
                margin-right: 0;
            }

            .footer-sub-navigation { text-align: center; }

            .back-to-top {
                position: absolute;
                top: -130%;
                right: 0;
            }
}

@media (min-width: 1025px) {
    .page-footer {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    	.footer-wrap {
    		max-width: 1324px !important;
    		margin-top: 0 auto;
    	}

        .page-footer .logo-watermark {
            width: 699px;
            height: 333px;
        }

    .footer-navigation li { padding-right: 30px; }

    .page-footer-info {
        font-size: 15px;
    	width: auto;
    	margin-bottom: 0;
    }

    .footer-sub-navigation {
        font-size: 14px;
        margin-top: 130px;
    }

        .footer-sub-navigation li {
            font-size: 14px;
            margin-bottom: 5px;
            padding-left: 6px;
            padding-right: 6px;
        }

    .back-to-top { top: 0; }
}


/**
 * Print CSS
 */

@media print {
    /* Reset*/
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        filter: none !important;
        -webkit-filter: none !important;
        text-shadow: none !important;
    }

    h2, h3 {
       /* Avoid a paragraph being detached from the heading immediately preceding it */
        page-break-after: avoid;
    }

    figure, table {
        /* Avoid breaking figure or table into 2 pages */
        -webkit-column-break-inside: avoid;
           -moz-column-break-inside: avoid;
                break-inside: avoid;
        page-break-inside: avoid;
    }

    p {
        /* Prevent single line at the end of a page and a single line at the top the next page */
        orphans: 2;
        widows: 2;
    }


    /* Grid Styling */

    .container { width: auto; }

    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; }

    .col-sm-12 { width: 100%; }
    .col-sm-11 { width: 91.66666666666666%; }
    .col-sm-10 { width: 83.33333333333334%; }
    .col-sm-9 { width: 75%; }
    .col-sm-8 { width: 66.66666666666666%; }
    .col-sm-7 { width: 58.333333333333336%; }
    .col-sm-6 { width: 50%; }
    .col-sm-5 { width: 41.66666666666667%; }
    .col-sm-4 { width: 33.33333333333333%; }
    .col-sm-3 { width: 25%; }
    .col-sm-2 { width: 16.666666666666664%; }
    .col-sm-1 { width: 8.333333333333332%; }


    /* Slick Slider - remove if not using slick slider */

	.slick-slider .slick-arrow,
	.slick-slider .slick-dots {
		display: none !important; /* we usually don't need to show slider navigation for print */
	}

	/* For sliders you want to display full width for print.
	   Update ".slick-slider" with your specific slider names. */
	.slick-slider,
	.slick-sliderg .slick-list,
	.slick-slider .slick-track,
	.slick-slider .slick-slide {
		width: 100% !important;
		height: auto !important;
	}

	/* For sliders where you only want to show the 1st image of that slider.
	   Update ".slick-slider" with your specific slider names. */
    .slick-slider .slick-slide 				{ display: none !important; }
	.slick-slider .slick-slide.slick-active { display: block !important; }

	/* Show Only Active Thumbnails */
	.slick-slider .slick-cloned {
		display: none;
	}

    /* Reset adaptiveHeight */
    .slick-list {
        height: auto !important;
    }

   /* Remove Scrollbars */
    .slick-track {
        width: auto !important;
        height: auto !important;
        -webkit-transform: none !important;
            -ms-transform: none !important;
                transform: none !important;
    }

	.slick-track.slick-slide {
        width: auto !important;
    }


}

@media (min-width: 480px) {
	.promotions-bar__text {
		font-size: 14px;
	}
}

@media (min-width: 768px) {
	.promotions-bar {
		padding: 5px 25px;
	}

	.promotions-bar__text {
		padding: 7px 20px;
		font-size: 16px;
	}

	.promotions-bar__text {
		width: 100%;
	}
}



/*
* 6/4/2021 EDITS
*/
@media(max-width:767px){
    .intro-section--img{
        margin-bottom: 60px;
    }

    .image-btn{
        height: auto;
    }

    .image-btn img{
        position: absolute;
    }

    .image-btn-title{
        display: none;
    }

    .image-btn-content{
        position: relative;
    }
}



/*------------------------------------*\
    Trumps
\*------------------------------------*/

@-ms-viewport { width: device-width; }


/**
 * Images
 */

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}


/**
 * Visiblity
 */

.show { display: block !important; }

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg { display: none !important; }

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block { display: none !important; }

@media (max-width: 599px) {
    .visible-xxs      { display: block !important; }
    table.visible-xxs { display: table; }
    tr.visible-xxs    { display: table-row !important; }
    th.visible-xxs,
    td.visible-xxs    { display: table-cell !important; }

    .visible-xxs-block        { display: block !important; }
    .visible-xxs-inline       { display: inline !important; }
    .visible-xxs-inline-block { display: inline-block !important; }
}


@media (min-width: 600px) and (max-width: 767px) {
    .visible-xs      { display: block !important; }
    table.visible-xs { display: table; }
    tr.visible-xs    { display: table-row !important; }
    th.visible-xs,
    td.visible-xs    { display: table-cell !important; }

    .visible-xs-block        { display: block !important; }
    .visible-xs-inline       { display: inline !important; }
    .visible-xs-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .visible-sm      { display: block !important; }
    table.visible-sm { display: table; }
    tr.visible-sm    { display: table-row !important; }
    th.visible-sm,
    td.visible-sm    { display: table-cell !important; }

    .visible-sm-block        { display: block !important; }
    .visible-sm-inline       { display: inline !important; }
    .visible-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .visible-md      { display: block !important; }
    table.visible-md { display: table; }
    tr.visible-md    { display: table-row !important; }
    th.visible-md,
    td.visible-md    { display: table-cell !important; }

    .visible-md-block        { display: block !important; }
    .visible-md-inline       { display: inline !important; }
    .visible-md-inline-block { display: inline-block !important; }
}

@media (min-width: 1200px) {
    .visible-lg      { display: block !important; }
    table.visible-lg { display: table; }
    tr.visible-lg    {  display: table-row !important; }
    th.visible-lg,
    td.visible-lg    { display: table-cell !important; }

    .visible-lg-block        { display: block !important; }
    .visible-lg-inline       { display: inline !important; }
    .visible-lg-inline-block { display: inline-block !important; }
}


/**
 * Hiding
 */

.hide,
.hidden-xxs-up { display: none !important; }
.hidden       { display: none !important; visibility: hidden !important; }
.invisible    { visibility: hidden !important; }
.text-hide    {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media (max-width: 599px) {
    .hidden-xxs { display: none !important; }
}

    @media (min-width: 600px) {
      .hidden-xs-up { display: none !important; }
    }

@media (min-width: 600px) and (max-width: 767px) {
    .hidden-xs { display: none !important; }
}

    @media (max-width: 767px) {
      .hidden-xs-down { display: none !important; }
    }

    @media (min-width: 768px) {
      .hidden-sm-up { display: none !important; }
    }

@media (min-width: 768px) and (max-width: 1024px) {
    .hidden-sm { display: none !important; }
}

    @media (max-width: 1024px) {
      .hidden-sm-down { display: none !important; }
    }

    @media (min-width: 1025px) {
      .hidden-md-up { display: none !important; }
    }

@media (min-width: 1025px) and (max-width: 1199px) {
    .hidden-md { display: none !important; }
}

    @media (max-width: 1199px) {
      .hidden-md-down { display: none !important; }
    }

@media (min-width: 1200px) {
    .hidden-lg { display: none !important; }
}



/**
 * Screen Readers
 */

.sr-only,
.screen-reader-text,
.wpcf7 .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}


/**
 * Print
 */

.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block { display: none !important; }

@media print {
    .visible-print      { display: block !important; }
    table.visible-print { display: table; }
    tr.visible-print    { display: table-row !important; }
    th.visible-print,
    td.visible-print    { display: table-cell !important; }

    .visible-print-block        { display: block !important; }
    .visible-print-inline       { display: inline !important; }
    .visible-print-inline-block { display: inline-block !important; }

    .hidden-print { display: none !important; }
}


/**
 * Text alignment
 */

.text-left     { text-align:left  !important; }
.text-center   { text-align:center!important; }
.text-right    { text-align:right !important; }


/**
 * Text transform
 */

.text-capitalize    { text-transform: capitalize !important; }
.text-lowercase     { text-transform: lowercase  !important; }
.text-uppercase     { text-transform: uppercase  !important; }


/**
 * Positioning
 */

.affix-top    { position: fixed!important; top:    0!important; }
.affix-bottom { position: fixed!important; bottom: 0!important; }
.affix-left   { position: fixed!important; left:   0!important; }
.affix-right  { position: fixed!important; right:  0!important; }

.pull-right { float: right!important; }
.pull-left  { float: left !important; }

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/**
 * Add/remove margins
 */

.push          { margin:       20px!important; }
.push-top      { margin-top:   20px!important; }
.push-right    { margin-right: 20px!important; }
.push-bottom   { margin-bottom:20px!important; }
.push-left     { margin-left:  20px!important; }
.push-ends     { margin-top:   20px!important; margin-bottom:20px!important; }
.push-sides    { margin-right: 20px!important; margin-left:  20px!important; }

.push-half         { margin:       10px!important; }
.push-half-top     { margin-top:   10px!important; }
.push-half-right   { margin-right: 10px!important; }
.push-half-bottom  { margin-bottom:10px!important; }
.push-half-left    { margin-left:  10px!important; }
.push-half-ends    { margin-top:   10px!important; margin-bottom:10px!important; }
.push-half-sides   { margin-right: 10px!important; margin-left:  10px!important; }

.flush         { margin:       0!important; }
.flush-top     { margin-top:   0!important; }
.flush-right   { margin-right: 0!important; }
.flush-bottom  { margin-bottom:0!important; }
.flush-left    { margin-left:  0!important; }
.flush-ends    { margin-top:   0!important; margin-bottom:0!important; }
.flush-sides   { margin-right: 0!important; margin-left:  0!important; }


/**
 * Add/remove paddings
 */
.soft          { padding:       20px!important; }
.soft-top      { padding-top:   20px!important; }
.soft-right    { padding-right: 20px!important; }
.soft-bottom   { padding-bottom:20px!important; }
.soft-left     { padding-left:  20px!important; }
.soft-ends     { padding-top:   20px!important; padding-bottom:20px!important; }
.soft-sides    { padding-right: 20px!important; padding-left:  20px!important; }

.soft-half          { padding:       10px!important; }
.soft-half-top      { padding-top:   10px!important; }
.soft-half-right    { padding-right: 10px!important; }
.soft-half-bottom   { padding-bottom:10px!important; }
.soft-half-left     { padding-left:  10px!important; }
.soft-half-ends     { padding-top:   10px!important; padding-bottom:10px!important; }
.soft-half-sides    { padding-right: 10px!important; padding-left:  10px!important; }

.hard          { padding:       0!important; }
.hard-top      { padding-top:   0!important; }
.hard-right    { padding-right: 0!important; }
.hard-bottom   { padding-bottom:0!important; }
.hard-left     { padding-left:  0!important; }
.hard-ends     { padding-top:   0!important; padding-bottom:0!important; }
.hard-sides    { padding-right: 0!important; padding-left:  0!important; }


@media (min-width:600px) {

	.flush-xs         { margin:       0 !important; }
	.flush-xs-top     { margin-top:   0 !important; }
	.flush-xs-right   { margin-right: 0 !important; }
	.flush-xs-bottom  { margin-bottom:0 !important; }
	.flush-xs-left    { margin-left:  0 !important; }
	.flush-xs-ends    { margin-top:   0 !important; margin-bottom:0 !important; }
	.flush-xs-sides   { margin-right: 0 !important; margin-left:  0 !important; }

	.push-xs          { margin:       20px !important; }
	.push-xs-top      { margin-top:   20px !important; }
	.push-xs-right    { margin-right: 20px !important; }
	.push-xs-bottom   { margin-bottom:20px !important; }
	.push-xs-left     { margin-left:  20px !important; }
	.push-xs-ends     { margin-top:   20px !important; margin-bottom:20px !important; }
	.push-xs-sides    { margin-right: 20px !important; margin-left:  20px !important; }

	.push-half-xs         { margin:       10px !important; }
	.push-half-xs-top     { margin-top:   10px !important; }
	.push-half-xs-right   { margin-right: 10px !important; }
	.push-half-xs-bottom  { margin-bottom:10px !important; }
	.push-half-xs-left    { margin-left:  10px !important; }
	.push-half-xs-ends    { margin-top:   10px !important; margin-bottom:10px !important; }
	.push-half-xs-sides   { margin-right: 10px !important; margin-left:  10px !important; }

	.push-double-xs         { margin:       40px !important; }
	.push-double-xs-top     { margin-top:   40px !important; }
	.push-double-xs-right   { margin-right: 40px !important; }
	.push-double-xs-bottom  { margin-bottom:40px !important; }
	.push-double-xs-left    { margin-left:  40px !important; }
	.push-double-xs-ends    { margin-top:   40px !important; margin-bottom:40px !important; }
	.push-double-xs-sides   { margin-right: 40px !important; margin-left:  40px !important; }

	.push-triple-xs         { margin:       60px !important; }
	.push-triple-xs-top     { margin-top:   60px !important; }
	.push-triple-xs-right   { margin-right: 60px !important; }
	.push-triple-xs-bottom  { margin-bottom:60px !important; }
	.push-triple-xs-left    { margin-left:  60px !important; }
	.push-triple-xs-ends    { margin-top:   60px !important; margin-bottom:60px !important; }
	.push-triple-xs-sides   { margin-right: 60px !important; margin-left:  60px !important; }

	.soft-xs          { padding:       20px !important; }
	.soft-xs-top      { padding-top:   20px !important; }
	.soft-xs-right    { padding-right: 20px !important; }
	.soft-xs-bottom   { padding-bottom:20px !important; }
	.soft-xs-left     { padding-left:  20px !important; }
	.soft-xs-ends     { padding-top:   20px !important; padding-bottom:20px !important; }
	.soft-xs-sides    { padding-right: 20px !important; padding-left:  20px !important; }

	.soft-half-xs          { padding:       10px !important; }
	.soft-half-xs-top      { padding-top:   10px !important; }
	.soft-half-xs-right    { padding-right: 10px !important; }
	.soft-half-xs-bottom   { padding-bottom:10px !important; }
	.soft-half-xs-left     { padding-left:  10px !important; }
	.soft-half-xs-ends     { padding-top:   10px !important; padding-bottom:10px !important; }
	.soft-half-xs-sides    { padding-right: 10px !important; padding-left:  10px !important; }

	.soft-double-xs          { padding:       40px !important; }
	.soft-double-xs-top      { padding-top:   40px !important; }
	.soft-double-xs-right    { padding-right: 40px !important; }
	.soft-double-xs-bottom   { padding-bottom:40px !important; }
	.soft-double-xs-left     { padding-left:  40px !important; }
	.soft-double-xs-ends     { padding-top:   40px !important; padding-bottom:40px !important; }
	.soft-double-xs-sides    { padding-right: 40px !important; padding-left:  40px !important; }

	.soft-triple-xs          { padding:       60px !important; }
	.soft-triple-xs-top      { padding-top:   60px !important; }
	.soft-triple-xs-right    { padding-right: 60px !important; }
	.soft-triple-xs-bottom   { padding-bottom:60px !important; }
	.soft-triple-xs-left     { padding-left:  60px !important; }
	.soft-triple-xs-ends     { padding-top:   60px !important; padding-bottom:60px !important; }
	.soft-triple-xs-sides    { padding-right: 60px !important; padding-left:  60px !important; }

	.hard-xs          { padding:       0 !important; }
	.hard-xs-top      { padding-top:   0 !important; }
	.hard-xs-right    { padding-right: 0 !important; }
	.hard-xs-bottom   { padding-bottom:0 !important; }
	.hard-xs-left     { padding-left:  0 !important; }
	.hard-xs-ends     { padding-top:   0 !important; padding-bottom:0 !important; }
	.hard-xs-sides    { padding-right: 0 !important; padding-left:  0 !important; }

}

@media (min-width:768px) {

	.flush-sm         { margin:       0 !important; }
	.flush-sm-top     { margin-top:   0 !important; }
	.flush-sm-right   { margin-right: 0 !important; }
	.flush-sm-bottom  { margin-bottom:0 !important; }
	.flush-sm-left    { margin-left:  0 !important; }
	.flush-sm-ends    { margin-top:   0 !important; margin-bottom:0 !important; }
	.flush-sm-sides   { margin-right: 0 !important; margin-left:  0 !important; }

	.push-sm          { margin:       20px !important; }
	.push-sm-top      { margin-top:   20px !important; }
	.push-sm-right    { margin-right: 20px !important; }
	.push-sm-bottom   { margin-bottom:20px !important; }
	.push-sm-left     { margin-left:  20px !important; }
	.push-sm-ends     { margin-top:   20px !important; margin-bottom:20px !important; }
	.push-sm-sides    { margin-right: 20px !important; margin-left:  20px !important; }

	.push-half-sm         { margin:       10px !important; }
	.push-half-sm-top     { margin-top:   10px !important; }
	.push-half-sm-right   { margin-right: 10px !important; }
	.push-half-sm-bottom  { margin-bottom:10px !important; }
	.push-half-sm-left    { margin-left:  10px !important; }
	.push-half-sm-ends    { margin-top:   10px !important; margin-bottom:10px !important; }
	.push-half-sm-sides   { margin-right: 10px !important; margin-left:  10px !important; }

	.push-double-sm         { margin:       40px !important; }
	.push-double-sm-top     { margin-top:   40px !important; }
	.push-double-sm-right   { margin-right: 40px !important; }
	.push-double-sm-bottom  { margin-bottom:40px !important; }
	.push-double-sm-left    { margin-left:  40px !important; }
	.push-double-sm-ends    { margin-top:   40px !important; margin-bottom:40px !important; }
	.push-double-sm-sides   { margin-right: 40px !important; margin-left:  40px !important; }

	.push-triple-sm         { margin:       60px !important; }
	.push-triple-sm-top     { margin-top:   60px !important; }
	.push-triple-sm-right   { margin-right: 60px !important; }
	.push-triple-sm-bottom  { margin-bottom:60px !important; }
	.push-triple-sm-left    { margin-left:  60px !important; }
	.push-triple-sm-ends    { margin-top:   60px !important; margin-bottom:60px !important; }
	.push-triple-sm-sides   { margin-right: 60px !important; margin-left:  60px !important; }

	.soft-sm          { padding:       20px !important; }
	.soft-sm-top      { padding-top:   20px !important; }
	.soft-sm-right    { padding-right: 20px !important; }
	.soft-sm-bottom   { padding-bottom:20px !important; }
	.soft-sm-left     { padding-left:  20px !important; }
	.soft-sm-ends     { padding-top:   20px !important; padding-bottom:20px !important; }
	.soft-sm-sides    { padding-right: 20px !important; padding-left:  20px !important; }

	.soft-half-sm          { padding:       10px !important; }
	.soft-half-sm-top      { padding-top:   10px !important; }
	.soft-half-sm-right    { padding-right: 10px !important; }
	.soft-half-sm-bottom   { padding-bottom:10px !important; }
	.soft-half-sm-left     { padding-left:  10px !important; }
	.soft-half-sm-ends     { padding-top:   10px !important; padding-bottom:10px !important; }
	.soft-half-sm-sides    { padding-right: 10px !important; padding-left:  10px !important; }

	.soft-double-sm          { padding:       40px !important; }
	.soft-double-sm-top      { padding-top:   40px !important; }
	.soft-double-sm-right    { padding-right: 40px !important; }
	.soft-double-sm-bottom   { padding-bottom:40px !important; }
	.soft-double-sm-left     { padding-left:  40px !important; }
	.soft-double-sm-ends     { padding-top:   40px !important; padding-bottom:40px !important; }
	.soft-double-sm-sides    { padding-right: 40px !important; padding-left:  40px !important; }

	.soft-triple-sm          { padding:       60px !important; }
	.soft-triple-sm-top      { padding-top:   60px !important; }
	.soft-triple-sm-right    { padding-right: 60px !important; }
	.soft-triple-sm-bottom   { padding-bottom:60px !important; }
	.soft-triple-sm-left     { padding-left:  60px !important; }
	.soft-triple-sm-ends     { padding-top:   60px !important; padding-bottom:60px !important; }
	.soft-triple-sm-sides    { padding-right: 60px !important; padding-left:  60px !important; }

	.hard-sm          { padding:       0 !important; }
	.hard-sm-top      { padding-top:   0 !important; }
	.hard-sm-right    { padding-right: 0 !important; }
	.hard-sm-bottom   { padding-bottom:0 !important; }
	.hard-sm-left     { padding-left:  0 !important; }
	.hard-sm-ends     { padding-top:   0 !important; padding-bottom:0 !important; }
	.hard-sm-sides    { padding-right: 0 !important; padding-left:  0 !important; }

}

@media (min-width:1025px) {

	.flush-md         { margin:       0 !important; }
	.flush-md-top     { margin-top:   0 !important; }
	.flush-md-right   { margin-right: 0 !important; }
	.flush-md-bottom  { margin-bottom:0 !important; }
	.flush-md-left    { margin-left:  0 !important; }
	.flush-md-ends    { margin-top:   0 !important; margin-bottom:0 !important; }
	.flush-md-sides   { margin-right: 0 !important; margin-left:  0 !important; }

	.push-md          { margin:       20px !important; }
	.push-md-top      { margin-top:   20px !important; }
	.push-md-right    { margin-right: 20px !important; }
	.push-md-bottom   { margin-bottom:20px !important; }
	.push-md-left     { margin-left:  20px !important; }
	.push-md-ends     { margin-top:   20px !important; margin-bottom:20px !important; }
	.push-md-sides    { margin-right: 20px !important; margin-left:  20px !important; }

	.push-half-md         { margin:       10px !important; }
	.push-half-md-top     { margin-top:   10px !important; }
	.push-half-md-right   { margin-right: 10px !important; }
	.push-half-md-bottom  { margin-bottom:10px !important; }
	.push-half-md-left    { margin-left:  10px !important; }
	.push-half-md-ends    { margin-top:   10px !important; margin-bottom:10px !important; }
	.push-half-md-sides   { margin-right: 10px !important; margin-left:  10px !important; }

	.push-double-md         { margin:       40px !important; }
	.push-double-md-top     { margin-top:   40px !important; }
	.push-double-md-right   { margin-right: 40px !important; }
	.push-double-md-bottom  { margin-bottom:40px !important; }
	.push-double-md-left    { margin-left:  40px !important; }
	.push-double-md-ends    { margin-top:   40px !important; margin-bottom:40px !important; }
	.push-double-md-sides   { margin-right: 40px !important; margin-left:  40px !important; }

	.push-triple-md         { margin:       60px !important; }
	.push-triple-md-top     { margin-top:   60px !important; }
	.push-triple-md-right   { margin-right: 60px !important; }
	.push-triple-md-bottom  { margin-bottom:60px !important; }
	.push-triple-md-left    { margin-left:  60px !important; }
	.push-triple-md-ends    { margin-top:   60px !important; margin-bottom:60px !important; }
	.push-triple-md-sides   { margin-right: 60px !important; margin-left:  60px !important; }

	.soft-md          { padding:       20px !important; }
	.soft-md-top      { padding-top:   20px !important; }
	.soft-md-right    { padding-right: 20px !important; }
	.soft-md-bottom   { padding-bottom:20px !important; }
	.soft-md-left     { padding-left:  20px !important; }
	.soft-md-ends     { padding-top:   20px !important; padding-bottom:20px !important; }
	.soft-md-sides    { padding-right: 20px !important; padding-left:  20px !important; }

	.soft-half-md          { padding:       10px !important; }
	.soft-half-md-top      { padding-top:   10px !important; }
	.soft-half-md-right    { padding-right: 10px !important; }
	.soft-half-md-bottom   { padding-bottom:10px !important; }
	.soft-half-md-left     { padding-left:  10px !important; }
	.soft-half-md-ends     { padding-top:   10px !important; padding-bottom:10px !important; }
	.soft-half-md-sides    { padding-right: 10px !important; padding-left:  10px !important; }

	.soft-double-md          { padding:       40px !important; }
	.soft-double-md-top      { padding-top:   40px !important; }
	.soft-double-md-right    { padding-right: 40px !important; }
	.soft-double-md-bottom   { padding-bottom:40px !important; }
	.soft-double-md-left     { padding-left:  40px !important; }
	.soft-double-md-ends     { padding-top:   40px !important; padding-bottom:40px !important; }
	.soft-double-md-sides    { padding-right: 40px !important; padding-left:  40px !important; }

	.soft-triple-md          { padding:       60px !important; }
	.soft-triple-md-top      { padding-top:   60px !important; }
	.soft-triple-md-right    { padding-right: 60px !important; }
	.soft-triple-md-bottom   { padding-bottom:60px !important; }
	.soft-triple-md-left     { padding-left:  60px !important; }
	.soft-triple-md-ends     { padding-top:   60px !important; padding-bottom:60px !important; }
	.soft-triple-md-sides    { padding-right: 60px !important; padding-left:  60px !important; }

	.hard-md          { padding:       0 !important; }
	.hard-md-top      { padding-top:   0 !important; }
	.hard-md-right    { padding-right: 0 !important; }
	.hard-md-bottom   { padding-bottom:0 !important; }
	.hard-md-left     { padding-left:  0 !important; }
	.hard-md-ends     { padding-top:   0 !important; padding-bottom:0 !important; }
	.hard-md-sides    { padding-right: 0 !important; padding-left:  0 !important; }

}

@media (min-width:1200px) {

	.flush-lg         { margin:       0 !important; }
	.flush-lg-top     { margin-top:   0 !important; }
	.flush-lg-right   { margin-right: 0 !important; }
	.flush-lg-bottom  { margin-bottom:0 !important; }
	.flush-lg-left    { margin-left:  0 !important; }
	.flush-lg-ends    { margin-top:   0 !important; margin-bottom:0 !important; }
	.flush-lg-sides   { margin-right: 0 !important; margin-left:  0 !important; }

	.push-lg          { margin:       20px !important; }
	.push-lg-top      { margin-top:   20px !important; }
	.push-lg-right    { margin-right: 20px !important; }
	.push-lg-bottom   { margin-bottom:20px !important; }
	.push-lg-left     { margin-left:  20px !important; }
	.push-lg-ends     { margin-top:   20px !important; margin-bottom:20px !important; }
	.push-lg-sides    { margin-right: 20px !important; margin-left:  20px !important; }

	.push-half-lg         { margin:       10px !important; }
	.push-half-lg-top     { margin-top:   10px !important; }
	.push-half-lg-right   { margin-right: 10px !important; }
	.push-half-lg-bottom  { margin-bottom:10px !important; }
	.push-half-lg-left    { margin-left:  10px !important; }
	.push-half-lg-ends    { margin-top:   10px !important; margin-bottom:10px !important; }
	.push-half-lg-sides   { margin-right: 10px !important; margin-left:  10px !important; }

	.push-double-lg         { margin:       40px !important; }
	.push-double-lg-top     { margin-top:   40px !important; }
	.push-double-lg-right   { margin-right: 40px !important; }
	.push-double-lg-bottom  { margin-bottom:40px !important; }
	.push-double-lg-left    { margin-left:  40px !important; }
	.push-double-lg-ends    { margin-top:   40px !important; margin-bottom:40px !important; }
	.push-double-lg-sides   { margin-right: 40px !important; margin-left:  40px !important; }

	.push-triple-lg         { margin:       60px !important; }
	.push-triple-lg-top     { margin-top:   60px !important; }
	.push-triple-lg-right   { margin-right: 60px !important; }
	.push-triple-lg-bottom  { margin-bottom:60px !important; }
	.push-triple-lg-left    { margin-left:  60px !important; }
	.push-triple-lg-ends    { margin-top:   60px !important; margin-bottom:60px !important; }
	.push-triple-lg-sides   { margin-right: 60px !important; margin-left:  60px !important; }

	.soft-lg          { padding:       20px !important; }
	.soft-lg-top      { padding-top:   20px !important; }
	.soft-lg-right    { padding-right: 20px !important; }
	.soft-lg-bottom   { padding-bottom:20px !important; }
	.soft-lg-left     { padding-left:  20px !important; }
	.soft-lg-ends     { padding-top:   20px !important; padding-bottom:20px !important; }
	.soft-lg-sides    { padding-right: 20px !important; padding-left:  20px !important; }

	.soft-half-lg          { padding:       10px !important; }
	.soft-half-lg-top      { padding-top:   10px !important; }
	.soft-half-lg-right    { padding-right: 10px !important; }
	.soft-half-lg-bottom   { padding-bottom:10px !important; }
	.soft-half-lg-left     { padding-left:  10px !important; }
	.soft-half-lg-ends     { padding-top:   10px !important; padding-bottom:10px !important; }
	.soft-half-lg-sides    { padding-right: 10px !important; padding-left:  10px !important; }

	.soft-double-lg          { padding:       40px !important; }
	.soft-double-lg-top      { padding-top:   40px !important; }
	.soft-double-lg-right    { padding-right: 40px !important; }
	.soft-double-lg-bottom   { padding-bottom:40px !important; }
	.soft-double-lg-left     { padding-left:  40px !important; }
	.soft-double-lg-ends     { padding-top:   40px !important; padding-bottom:40px !important; }
	.soft-double-lg-sides    { padding-right: 40px !important; padding-left:  40px !important; }

	.soft-triple-lg          { padding:       60px !important; }
	.soft-triple-lg-top      { padding-top:   60px !important; }
	.soft-triple-lg-right    { padding-right: 60px !important; }
	.soft-triple-lg-bottom   { padding-bottom:60px !important; }
	.soft-triple-lg-left     { padding-left:  60px !important; }
	.soft-triple-lg-ends     { padding-top:   60px !important; padding-bottom:60px !important; }
	.soft-triple-lg-sides    { padding-right: 60px !important; padding-left:  60px !important; }

	.hard-lg          { padding:       0 !important; }
	.hard-lg-top      { padding-top:   0 !important; }
	.hard-lg-right    { padding-right: 0 !important; }
	.hard-lg-bottom   { padding-bottom:0 !important; }
	.hard-lg-left     { padding-left:  0 !important; }
	.hard-lg-ends     { padding-top:   0 !important; padding-bottom:0 !important; }
	.hard-lg-sides    { padding-right: 0 !important; padding-left:  0 !important; }

}


/*******************************
 * No CSS Should be added below the above TRUMPS section.
 *
 *
 * Please add all additional CSS above the TRUMPS section above.
 */