/**
 * CONTENTS
 *
 * GENERIC
 * Box-sizing............Better default `box-sizing`.
 * Sticky Footer.........Make Footer always stick to bottom.
 * Image Aligns..........WP specific img aligns.
 *
 * BASE
 * Typography............@fontfaces, base text and vertical rhythem setup.
 *
 * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.f
 * Clearfix..............Properly clear floats.
 * Flexbox...............Eflate modern flexbox layout.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Block-list............Create big blocky lists of content.
 * Matrix................Table like layouts for lists.
 * Multi-list............Multiple column lists.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements.
 * Masthead..............Page title/image/slideshow header block.
 * 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.
 */

/*------------------------------------*\
    Generic
\*------------------------------------*/

/**
 * Box-sizing
 */

 * { box-sizing: border-box; }

 /*------------------------------------*\
     Sticky Footer
 \*------------------------------------*/
 
 html {
     position: relative;
     min-height: 100%;
     background-color: #D9DAD9;
 
 }


@font-face {
    font-family: 'HALMatex';
    src: url('../fonts/halmatextest-regular-webfont.woff2') format('woff2'),
         url('../fonts/halmatextest-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'HALMatex-book';
    src: url('../fonts/halmatextest-book-webfont.woff2') format('woff2'),
         url('../fonts/halmatextest-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'HALMatex-Light';
    src: url('../fonts/halmatextest-light-webfont.woff2') format('woff2'),
         url('../fonts/halmatextest-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
 
 
 /*------------------------------------*\
     Fonts
 \*------------------------------------*/
 
 
 body {
     color: #231F20;
     margin: 0;
     overflow-x: hidden;
     line-height: 1.3em;
     scroll-behavior: smooth;
     font-family: 'HALMatex-book';
 }
 
 h1 {
     font-size: 45px;
 }
 
 h2 {
     font-size: 38px;
 }
 
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     color: #000;
 }
 h1,h2,h3,h4,h5,h6,p,ul,ol,li {
     padding: 0;
     margin: 0;
     font-weight: normal;
     line-height: 1.3em;
 }
 
 ul {
     list-style: none;
 }
 
 li {display: inline-block;}
 
 a {
     display: inline-block;
     text-decoration: none;
     margin: 0;
     outline: none !important;
 }
 
 @media(min-width: 768px) {
     h1 {
         font-size: 55px;
     }
 
     h2 {
         font-size: 45px;
     }    
 }
 

 
 /*------------------------------------*\
     Wrappers
 \*------------------------------------*/
 
 .container, .container-fluid {
     margin-right: auto;
     margin-left: auto;
     padding-left: 20px;
     padding-right: 20px;
 }
 .container { max-width: 1920px; width: 100%; }
 
 /*------------------------------------*\
     Bootstrap
 \*------------------------------------*/
 
 .row {
     margin-left: -20px;
     margin-right: -20px;
 }
 [class*="col-"] {
     position: relative;
     min-height: 1px;
     padding-left: 20px;
     padding-right: 20px;
 }
 
 [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%; }
 
 @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%; }
 }
 
 @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%; }
 }
 
 @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%; }
 }
 
 @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; }
 
 /*------------------------------------*\
     Flexbox - Until we can utilise flexbox natively we can kinda, sorta, attempt to emulate
 \*------------------------------------*/
 
 .flexbox {
     display: table;
     width: 100%;
 }
     html.flexbox {
         display: block;
         width: auto;
     }
     .flexbox-item {
         display: table-cell;
         vertical-align: middle;
     }
 
 @media (min-width: 1200px) {
     .flex-container {
         padding-left: 50px;
     }
 }
 
 /*------------------------------------*\
     Effects
 \*------------------------------------*/
 
 a,
 a:after,
 a:before,
 
 .btn,
 .btn:after,
 .btn:before,
 
 input,
 button,
 select,
 textarea,
 .menu-icon span {
     -webkit-transition: all 400ms ease-in-out;
        -moz-transition: all 400ms ease-in-out;
         -ms-transition: all 400ms ease-in-out;
          -o-transition: all 400ms ease-in-out;
             transition: all 400ms ease-in-out;
 }
 
 
 /*------------------------------------*\
     BUttons
 \*------------------------------------*/
 .btn {
     display: inline-block;
     color: #fff;
     font-weight: 700;
     padding: 1.125em 1.875em;
     margin-right: 10px;
 }
 
 .btn + .btn {
     margin-top: 15px;
 
 }
 
 .btn-primary {
     background-color: #e94d65;
     box-shadow: 0 -2px 0 0 rgb(24 24 24 / 15%) inset;
 }
 
 .btn-secondary {
     background-color: #1b4962;
     box-shadow: 0 -2px 0 0 rgb(24 24 24 / 15%) inset;
 }
 
 
 /*------------------------------------*\
     Selectric
 \*------------------------------------*/
 
 .selectric-wrapper {
     position: relative;
     cursor: pointer;
     margin: 10px 0;
 }
 .selectric-responsive {
     width: 100%;
 }
 .selectric {
     border-radius: 0px;
     background: #f1ebdf;
     position: relative;
     overflow: hidden;
 }
 .selectric .label {
     display: block;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     margin: 0 38px 0 2px;
     font-size: 13px;
     line-height: 38px;
     color: #5a5650;
     height: 38px;
     -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
 }
 .selectric .button {
     display: block;
     position: absolute;
     right: 0;
     top: 0;
     width: 38px;
     height: 38px;
     line-height: 38px;
     background-color: #f1ebdf;
     color: #5a5650;
     text-align: center;
     font: 0/0 a;
     *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
 }
 .selectric .button:after {
     content: " ";
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     margin: auto;
     width: 0;
     height: 0;
     border: 4px solid transparent;
     border-top-color: #5a5650;
     border-bottom: none;
 }
 .selectric-focus .selectric {
     border-color: #aaaaaa;
 }
 .selectric-hover .selectric .button {
     color: #5a5650;
     background-color: #f1ebdf;
 }
 .selectric-hover .selectric .button:after {
     border-top-color: #5a5650;
 }
 .selectric-open {
     z-index: 9999;
 }
 .selectric-open .selectric {
     border-color: #c4c4c4;
 }
 .selectric-open .selectric-items {
     display: block;
 }
 .selectric-disabled {
     filter: alpha(opacity=50);
     opacity: 0.5;
     cursor: default;
     -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
 }
 .selectric-hide-select {
     position: relative;
     overflow: hidden;
     width: 0;
     height: 0;
 }
 .selectric-hide-select select {
     position: absolute;
     left: -100%;
 }
 .selectric-hide-select.selectric-is-native {
     position: absolute;
     width: 100%;
     height: 100%;
     z-index: 10;
 }
 .selectric-hide-select.selectric-is-native select {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 100%;
     width: 100%;
     border: none;
     z-index: 1;
     box-sizing: border-box;
     opacity: 0;
 }
 .selectric-input {
     position: absolute !important;
     top: 0 !important;
     left: 0 !important;
     overflow: hidden !important;
     clip: rect(0, 0, 0, 0) !important;
     margin: 0 !important;
     padding: 0 !important;
     width: 1px !important;
     height: 1px !important;
     outline: none !important;
     border: none !important;
     *font: 0/0 a !important;
     background: none !important;
 }
 .selectric-temp-show {
     position: absolute !important;
     visibility: hidden !important;
     display: block !important;
 }
 .selectric-items {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: #F8F8F8;
     border: 1px solid #c4c4c4;
     z-index: -1;
     box-shadow: 0 0 10px -6px;
 }
 .selectric-items .selectric-scroll {
     height: 100%;
     overflow: auto;
 }
 .selectric-above .selectric-items {
     top: auto;
     bottom: 100%;
 }
 .selectric-items ul, .selectric-items li {
     list-style: none;
     padding: 0;
     margin: 0;
     font-size: 12px;
     line-height: 20px;
     min-height: 20px;
 }
 .selectric-items li {
     display: block;
     padding: 10px;
     color: #666;
     cursor: pointer;
 }
 .selectric-items li.selected {
     background: #E0E0E0;
     color: #444;
 }
 .selectric-items li.highlighted {
     background: #f1ebdf;
     color: #444;
 }
 .selectric-items li:hover {
     background: #D5D5D5;
     color: #444;
 }
 .selectric-items .disabled {
     filter: alpha(opacity=50);
     opacity: 0.5;
     cursor: default !important;
     background: none !important;
     color: #666 !important;
     -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
 }
 .selectric-items .selectric-group .selectric-group-label {
     font-weight: bold;
     padding-left: 10px;
     cursor: default;
     -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
     background: none;
     color: #444;
 }
 .selectric-items .selectric-group.disabled li {
     filter: alpha(opacity=100);
     opacity: 1;
 }
 .selectric-items .selectric-group li {
     padding-left: 25px;
 }
 
 /*------------------------------------*\
     Slick
 \*------------------------------------*/
 
 .slick-slider {
     position: relative;
     display: block;
     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);
        -moz-transform: translate3d(0, 0, 0);
         -ms-transform: translate3d(0, 0, 0);
          -o-transform: translate3d(0, 0, 0);
             transform: translate3d(0, 0, 0);
 }
 .slick-track {
     position: relative;
     top: 0;
     left: 0;
 
     display: block;
 }
 .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;
     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-dots {
     right: 0px;
     bottom: -43px;
     position: absolute;
     width: 100%;
     text-align: center;
     padding: 0px;
 }
 .js-homeslider .slick-dots {
     left: -1134px;
     margin-bottom: 27px;
 }
     .slick-dots li {
         display: inline-block;
         width: 8px;
         height: 8px;
         background: #cacaca;
         border: 1px #cacaca solid;
         background-color: #cacaca;
         border-radius: 50%;
         /*transform:rotate(45deg);*/
         cursor: pointer;
     }
     .slick-dots li:not(:last-child) {
         margin-right: 15px;
     }
     .slickMAIN STYLE .slick-active {
         background: #2e2e2e;
         border: 1px solid #2e2e2e;
     }
     .FOOTER STYLE li button {
         display: none;
     }
 
 
 /*------------------------------------*\
     HEADER STYLE
 \*------------------------------------*/
 .page-header{
     position: relative;
     display: block;
     position: fixed;
     padding: 20px;
     width: 100%;
     z-index: 2;
     background-color: transparent;
     transition: .6s ease-in;
     border-bottom: 1px solid black;
     top: 0;
 }
 .page-header.header-noborder { border-bottom: none; }
 
 .heading{
     display: flex;
     justify-content: space-between;
     position: relative;
    z-index: 99999;
 }
 
.heading-img { padding: 0px; }
.stickyheader .heading-img .logo-main { filter: invert(100%); }
.heading-img .logo-main {
    width: 110px;
}
    .heading-img .logo-main img {
        height: 30px;
    }


.heading-img .logo-inner {
     width: 57px;
     height: 26px;
}



 .heading-text {
     color: #000;
     font-size: 12px;
     font-family: 'HALMatex';                              
     font-weight: bold;
     display: flex;
     justify-content: space-between;
     width: 235px;
     align-items: center;
 }
 
 .lagence{
     cursor: pointer;
     color: #000;
     text-decoration: none;
 }
 
 
 .bien{
     cursor: pointer;
     color: #000;
     text-decoration: none;
 }
 
 .contact{
     cursor: pointer;
     color: #000;
     text-decoration: none;
 }
 
 .line{
     margin-top: 50px;
     border-bottom: 1px solid #000;
 }


 .page-header.stickyheader {
    background-color: #D9DAD9;
}
@media(min-width: 1025px) {
    
    .page-header { padding: 20px 40px; }

    .page-header.header-noborder { padding: 30px 40px; }
    .heading-text {
        width: 350px;
    }
        .heading-text a { font-size: 13px;font-weight:400; }

    .heading-img .logo-main img {
        height: 40px;
    }
    .page-header.stickyheader { padding: 15px 40px; }
}


@media(min-width: 1200px) {
    .heading-text {
        width: 462px;
    }
    .heading-text a { font-size: 15px; }
    .heading-img .logo-main img {
        height: 50px;
    }
}


@media(min-width: 1366px) {
    .heading-text a { font-size: 17px;font-weight:400; }
}

 
 /*------------------------------------*\
     Masthead STYLE
 \*------------------------------------*/
 .masthead-img{
     position: relative;
     float: left;
     width: 100%;
 }
 
 .masthead-img>img{
    height: 50vh;
    object-fit: cover;
 }

 .masthead { 
     padding-bottom: 40px; 
     border-bottom: 1px #000 solid;
}
.mastcontact { 
    border-bottom: none;
}
 @media(min-width: 769px) {
    .masthead { 
        margin-bottom: 50px; 
        padding-bottom: 0;
   }
     
    .masthead-img>img{
        height: 100vh;
        width: 60%;
        float: left;
    }
 }
 @media(min-width: 1025px) {
     
    .masthead-img>img{
        width: calc(100% - 500px);
    }
 }
 @media(min-width: 1200px) {
     
    .masthead-img>img{
        width: calc(100% - 730px);
    }
 }
 
 
 
 
 
 /*------------------------------------*\
     Half-half STYLE
 \*------------------------------------*/
 .half-image{
     display: flex;
     margin-top: 40px;
     justify-content: space-between;
 }
 .lagence-half-block .half-image{
    margin-bottom: 40px;
    margin-top: 0px;
 }
 .half-image .half { cursor: pointer; margin-bottom: 40px; }
 .half>img{
     width: 701px;
     
 }
 .text-between>span{
     font-family: 'HALMatex-book';
     display: block;
 
 }
 .left{
     font-size: 12px;
 }
 
 .right{
     font-size: 12px;
 }
 
 .half>p{
    font-family: 'HALMatex';
     margin-left: 0px;
     margin-bottom: 6px;
     font-size: 12px;
 }

 .formError {
    position: absolute;
    bottom: 100px;
    font-size: 12px;
    text-align: left;
 }

    @media(min-width: 1025px) {
    .half-image { padding-left: 20px; padding-right: 20px;flex-wrap: wrap;}
    .half > img { 
        width: 100%; 
        object-fit: cover;
        height: 314px;
    }

    .half-image .right{
        width: 160px;
        text-align: right;
    }
    .text-between{
        display: flex;
        justify-content: space-between;
    }

}

@media(min-width: 1200px) {
    .half > p,
    .left,
    .right {
        font-size: 14px;
    }
}

@media(min-width: 1366px) {
    .half > p,
    .left,
    .right {
        font-size: 15px;font-weight:400;
    }
    .half-image .right{
        width: 200px;
    }
    .half > img { 
        height: 414px;
    }
}

@media(min-width: 1500px) {
    .half > img { 
        height: 514px;
    }
}
 
 /*------------------------------------*\
     Responsive index
 \*------------------------------------*/
 
 .fondee{
     top: 162px;
     right: 102px;
     font-family: HALMatex-Light;
     font-size: 17px;font-weight:400;
 }
 
 .mission{
     position: absolute;
     bottom: 160px;
     font-family: HALMatex-book;
     font-weight: bold;
     font-size: 10px;
 }

.masthead-text{
    position: absolute;
    right: 25px;
    top: 125px;
    width: 235px;
    height: 100%;
}

 
 @media screen and (max-width: 768px) {
     .img-responsive{
         width: 100% !important;
     }
 
     .fondee{
         position: initial;
         width: 100%;
     }
 
     .mission{
         position: initial;
         margin-top: 20px;
         width: 100%;
     }
 
     .masthead-text{
         position:initial;
         margin-left: 14px;
         margin-right: 14px;
         margin-top: 20px;
         width: calc(100% - 30px);
     }
 }
 
 @media screen and (max-width: 767px) {
     .half-image{
         display: block;
     }
 }

@media(min-width: 1025px) {
    .fondee {
        font-size: 20px;
    }

    .mission {
        font-size: 12px;
    }

    .masthead-text {
        right: 40px;
        width: 350px;
    }
}


@media(min-width: 1200px) {
    .fondee {
        font-size: 23px;
    }

    .mission {
        font-size: 15px;
    }
    .masthead-text {
        width: 462px;
        top: 165px;
        height: calc(100% - 65px);
    }
}

@media(min-width: 1366px) {
    .fondee {
        font-size: 27px;
    }

    .mission {
        font-size: 17px;font-weight:400;
    }
}

 
 /*------------------------------------*\
     L'agence STYLE
 \*------------------------------------*/
 .page-header1{
     padding: 20px;
     width: 100%;
 }
 
 .heading1{
     display: flex;
     justify-content: space-between;
 }
 
 .heading-img1>img{
     width: 40px;
     height: 20px;
 
 }
 
 .heading-text1{
     color: #000;
     font-size: 12px;
     font-family: HALMatex-Light;
     font-weight: bold;
     display: flex;
     justify-content: space-between;
     width: 40%;
 }
 
 
 .lagence1 {
     cursor: pointer;
     color: #000;
     text-decoration: none;
 }
 
 .bien1{
     cursor: pointer;
     color: #000;
     text-decoration: none;
 }
 
 .contact1{
     cursor: pointer;
     color: #000;
     text-decoration: none;
 }
 
 .line{
     margin-top: 50px;
     border-bottom: 1px solid #000;
 }
 
 .lagence-half{
     display: block;
 }
 
 .lagence-half{
     display: flex;
     justify-content: space-between;
 }
 
 .lagence2{
     padding: 40px 0px;
 }
 
 .lagence-img{
     width: 100%;
     height: 50vh;
     object-fit: cover;
     margin-bottom: 30px;
 }
 
 .lagence-text{
     float: right;
     width: 40%;
     font-family: HALMatex;
     margin-right: 15px;
     letter-spacing: .17px !important;font-weight:400;
     letter-spacing: 2px;
     line-height: 1.3rem;
     margin-top: 150px;
 }
 
 .lagence-text>p{
     margin-bottom: 20px;
     font-size: 12px;
 }
 
 .mobile-burger{
     display: none;
 }
 
 .mobile-menu{
     display: none;
 }
 
 .mobile-menu a{
     text-decoration: none;
     color: black;
 }
 .nav-primary{
     padding-left: 20%;
     padding-right: 20%;
     width: 100%;
 }


.lagence-half-block { padding-top: 120px; }


    @media screen and (max-width: 767px) {
        .lagence-half {
            display: block;
        }

     .lagence-text {
         float: none;
         width: 100%;
         padding: 0px 20px 0px 20px;
         margin: 0;
     }
 
     .mobile-burger {
         display: block;
     }
 
     .bar1, 
     .bar2, 
     .bar3 {
         width: 30px;
         height: 3px;
         background-color: black;
         display: block;
         margin-bottom: 5px;
         transition: .4s;
         position: relative;
     }
 
     .mobile-menu {
         display: flex;
         position: fixed;
         width: 100%;
         height: 100%;
         text-align: center;
         align-items: center;
         background-color: white;
         z-index: 9999;
         right: 0;
         left: 0;
         opacity: 0;
         pointer-events: none;
         transition: .6s;
         transform: translateX(100%);
     }

    .menu-active .bar1 {
        transform: rotate(45deg);
        bottom: -5px;
    }

    .menu-active .bar2 {
        opacity: 0;
    }

    .menu-active .bar3 {
        transform: rotate(-45deg);
        top: -11px;
    }

 
     .mobile-menu.active{
         opacity: 1;
         pointer-events: auto;
         transition: .6s;
         transform: translateX(0);
         top: 0
     }
 
     .menu li{
         width: 100%;
         margin-bottom: 20px;
         font-size: 25px;
         font-weight: 600;
     }
     .menu a{
         font-family: HALMatex-Light;
     }
 }
 .lagence-text{
    font-family: HALMatex;
    margin-right: 15px;
    letter-spacing: .17px !important;font-weight:400;
    letter-spacing: 2px;
    line-height: 1.3rem;
}
@media(min-width: 768px) {
    
    .lagence-text{
        width: 275px;
        margin-top: 110px;
        padding-left: 35px;
    }
}
@media(min-width: 1025px) {

    .lagence-text{
        width: 390px;
        margin-top: 160px;
    }
    .lagence-half { padding: 0 20px; } 
    .lagence2 { font-size: 20px;  padding: 40px 0 85px 0;} 
    .lagence-half .lagence-img {
        height: 1082px;
        width: 100%;
    }
    .lagence-text>p{
        margin-bottom: 30px;
        font-size: 15px;
    }
}
@media(min-width: 1200px) {
    .lagence2 { font-size: 23px;font-family: 'HALMatex-Light'; } 
    .lagence-text {
        font-size: 15px;
        width: 482px;
        padding-left: 15px;
    }
    .lagence-text>p{
        margin-bottom: 30px;
        font-size: 17px;font-weight:400;
    }
}
@media(min-width: 1366px) {
    .lagence2 { font-size: 27px;font-family: 'HALMatex-Light'; } 
}
 
 
 /*------------------------------------*\
     SALE PAGE STYLE
 \*------------------------------------*/
 
 /* Sale Page */
 .sale-block {
     margin-bottom: 20px;
 }
 
 .sale-block h3 {
     margin: 95px 0px 30px 0px;
     font-size: 22px;
     font-family: HALMatex-book;
     font-weight: initial;
     color: #231F20;
 }
 
 .sale-content {
     margin-bottom: 30px;
 }
 
 .sale-content h6 {
     margin-bottom: 5px;
     font-size: 16px;
     font-family: HALMatex;
     color: #231F20;
 }
 
 .sale-content p,
 .sale-content span {
     margin-top: 5px;
     display: inline-block;
     font-size: 12px;
     font-family: HALMatex;
     color: #231F20;
 }
 
 .sale-content img {
     display: block;
     width: 100%;
     height: 200px;
     object-fit: cover;
     filter: grayscale(100%);
     transition: all 0.6s ease;
 }
 
 .sale-content img:hover {
     filter: none;
     transition: all 0.6s ease;
 }
 
 .img-swap {
     width: 100%;
     position: relative;
 }
 
 .img-swap img.img-hover {
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     object-fit: cover;
     opacity: 0;
     transition: opacity 1s ease;
 }
 
 .img-swap:hover img.img-hover {
     opacity: 1;
 }
 
 @media screen and (min-width: 768px) {
     .sale-block {
         margin-bottom: 40px;
     }
 
     .sale-block h3 {
         margin: 110px 0px 50px 0px;
     }
 
     .sale-content h6 {
         font-size: 12px;
     }
 
     .sale-content img {
         height: 300px;
     }
 
     .sale-content span {
         float: right;
     }
 }
 
 
 /*------------------------------------*\
     CONTACT
 \*------------------------------------*/
 /* Contact */
 .contact-block {
     overflow: hidden;
 }
 
 .img-container {
     width: 100%;
 }
 
 .contact-block img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }
 
 .contact-container {
     width: 90%;
     margin: auto;
 }
 
 .contact-top {
     margin: 30px 0;
 }
 
 .contact-top h3 {
     font-size: 18px;
     font-family: HALMatex-Book;
     color: #000;
 }
 
 .contact-bottom {
     margin-top: 20px;
 }
 
 .contact-bottom > p {
     margin-bottom: 25px;
     font-size: 12px;
     font-family: HALMatex;
     color: #000;
 }
 
 .open-panel {
     cursor: pointer;
     border-top: 1px #000 solid;
    border-bottom: 1px #000 solid;
    padding: 18px 0;
    margin-top: 35px;
 }
 
 .open-panel > span {
     font-size: 12px;
     font-family: HALMatex-book;
     color: #000;
 }
 
 @media screen and (min-width: 768px) {
     .img-container {
         width: 60%;
         position: absolute;
         top: 0;
         left: 0;
     }
     
     .contact-block img {
         height: 99vh;
     }
     
     .contact-container {
         width: 30%;
         height: 100vh;
         display: flex;
         top: 0;
         right: 0;
         padding-left: 65px;
         margin-right: 3px;
         flex-direction: column;
         justify-content: space-between;
     }
     
     .contact-top {
         margin-top: 100px;
     }
     
     .contact-bottom {
         margin-bottom: 10px;
     }
 }
 
@media(min-width: 1025px) {
    .contact-top h3 {
        font-size: 20px;
    }
    .contact-container { 
        margin-right: 30px;
        max-width: 498px;
        padding-left: 10px; 
    }

     .contact-bottom > p,
     .open-panel > span { font-size: 13px; }
}
 
@media(min-width: 1200px) {
    .contact-top h3 {
        font-size: 23px;
    }

    .contact-bottom > p,
    .open-panel > span { font-size: 15px; }
}
 
@media(min-width: 1366px) {
    .contact-top h3 {
        font-size: 27px;
    }

    .contact-bottom > p,
    .open-panel > span { font-size: 17px;font-weight:400; }
}

 /*------------------------------------*\
     SIDE PANEL
 \*------------------------------------*/
 /* Side Panel */
 .side-panel {
    width: 80%;
    height: 100vh;
    max-width: 350px;
    padding: 30px;
    /* padding-left: 65px;
    margin-right: 40px; */
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #D9DAD9;
    overflow: hidden;
    transform: translate(100%, 0);
    transition: all 1s ease;
    z-index: 9;
}
 
 .side-panel form {
     margin-top: 50px;
     /* border: #000 solid 1px;
     padding: 10px; */
 }
 
 .side-panel a {
     /* display: none; */
     float: right;
     margin-bottom: 10px;
     font-size: 32px;
     font-family: 'HALMatex-Light';
     color: #000;font-weight:200;
 }
 
 input[type=text] {
    width: 100%;
    border: none;
    outline: none;
    background-color: #D9DAD9;
    color: #000;
    border-bottom: 1px #000 solid;
    padding: 10px 0 5px 0;
    margin-bottom: 5px;
  font-size: 27px;
    font-family: HALMatex-Light;
    font-weight: 400;
 }
 input[type=checkbox] {
    float: left;
    padding: 0;
    margin: 0 5px 20px 0;
}
 
 .side-panel p {
    font-size: 12px;
    font-family: HALMatex;
    color: #000;
    margin-top: 15px;
 }
 
 .submit-bottom {
    width: calc(100% - 60px);
    margin-top: 50px;
    cursor: pointer;
    position: absolute;
    bottom: 30px;
    border-bottom: 1px #000 solid;
    border-top: 1px #000 solid;
    padding: 12px 0;
 }
 
 input[type=submit] {
     width: 100%;
     padding: 0;
     border: none;
     outline: none;
     background-color: #D9DAD9;
     color: #000;
     cursor: pointer;
     font-size: 17px;font-weight: 400;
     font-family: HALMatex;
     text-align: left;
 }
 
 .submit-bottom span {
     position: absolute;
     right: 0;
     font-size: 12px;
     font-family: HALMatex;
     color: #000;
 }
 
 ::placeholder {
     color: #000;
     font-family: HALMatex-Light;
     opacity: 1;
 }
 
 hr {
     color: #000;
     background-color: #000;
 }
 
 @media screen and (min-width: 768px) {
     .side-panel {
         width: 305px;
         max-width: none;
     }
 }
 
 @media screen and (min-width: 1025px) {
     .side-panel {
         width: 425px;
         padding: 30px 50px;
     }
     .submit-bottom {
        width: calc(100% - 100px);
     }
 }
 
 @media screen and (min-width: 1200px) {
     .side-panel {
         width: 545px;
     }

    input[type=text] {
        margin-bottom: 10px;
    }
 }
 
 /*------------------------------------*\
     CONDITION
 \*------------------------------------*/
 
 .condition-block {
    margin-top: 110px;
 }
 
 .condition-block h6 {
     position: relative;
     margin-top: 20px;
     font-family: 'HALMatex-book';
     font-size: 22px;
     color: #000;
 }
 
 .condition-container {
     margin-top: 20px;
 }
 
 .condition-container > p {
     width: 100%;
     font-family: HALMatex;
     font-size: 12px;
 }
 
 .condition-container ul {
     width: 100%;
     margin-top: 20px;
     cursor: pointer;
 }
 
 .condition-container li {
     display: block;
     font-family: 'HALMatex-book';
     font-size: 18px;
     transition: all 1s ease;
     padding: 12px 0;
    border-bottom: 1px #000 solid;
 }
 
 .condition-submenu {
     display: none;
     width: 100%;
     height: auto;
     margin-top: 5px;
     font-family: HALMatex;
     font-size: 12px;
 }
 
 .condition-submenu p {
     padding: 20px 0;
     margin-top: 0;
 }
 
 .hide-icon {
     display: block;
 }
 
 .show-icon {
     display: none;
 }
 
 .toggle .hide-icon {
     display: none;
 }
 
 .toggle .show-icon {
     display: block;
 }
 
 @media screen and (min-width: 768px) {
     .condition-block {
         width: 100%;
         padding-bottom: 50px;
        float: left;
     }
 
     .condition-block h6 {
         margin-top: 80px;
     }
 
     .condition-container {
         margin-top: 80px;
     }
 
     .condition-container > p {
         width: 50%;
     }
 
     .condition-container ul {
         width: 100%;
         margin-top: 80px;
     }
 
     .condition-container li {
         font-size: 20px;
     }
 }
 @media screen and (min-width: 1025px) {
    .condition-block {
        padding: 0 20px 50px 20px;
    }
 }
 
 
 /*------------------------------------*\
     FOOTER STYLE
 \*------------------------------------*/
 footer{
     display: flex;
     justify-content: space-between;
     font-family: HALMatex;
     padding: 20px;
     font-size: 10px;
     border-top: 1px #000 solid;
 }
 
 .conditions{
     cursor: pointer;
     text-decoration: none;
     color: #000;
 }



@media(min-width: 1025px) {
     footer { font-size: 13px;font-weight:400;  padding: 20px 40px;}
}
@media(min-width: 1200px) {
     footer { font-size: 15px;font-weight:400; }
}
@media(min-width: 1366p) {
     footer { font-size: 17px;font-weight:400; }
}
 
 
 /*------------------------------------*\
     Trumps
 \*------------------------------------*/
 
 @-ms-viewport { width: device-width; }
 
 /*------------------------------------*\
     Images
 \*------------------------------------*/
 
 .img-responsive {
     display: inline-block;
     max-width: 100%;
     height: auto;
 }

 main img {
    filter: grayscale(100%);
    transition: .6s;
 }

 main img:hover { filter: grayscale(0); }


 
 .img-rounded { border-radius: 6px !important; }
 .img-circle  { border-radius: 50% !important; }
 .img-square  { border-radius: 0   !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; }
 }
 
 /*------------------------------------*\
     Text alignment
 \*------------------------------------*/
 
 .text-left     { text-align:left  !important; }
 .text-center   { text-align:center!important; }
 .text-right    { text-align:right !important; }
 .text-justify    { text-align: justify !important; }
 
 /*------------------------------------*\
     Positioning
 \*------------------------------------*/
 
 .pull-right { float: right!important; }
 .pull-left  { float: left !important; }
 
 