/*--------------------------------------------------------------------------------------
  FONT
--------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'BasisGrotesquePro';
  src: url('../fonts/Basis Grotesque Pro.eot');
  src: url('../fonts/Basis Grotesque Pro.eot') format('embedded-opentype'), url('../fonts/Basis Grotesque Pro.woff2') format('woff2'), url('../fonts/Basis Grotesque Pro.woff') format('woff'), url('../fonts/Basis Grotesque Pro.eot.ttf') format('truetype'), url('../fonts/Basis Grotesque Pro.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------------------------------------------------------------
  MAIN
--------------------------------------------------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding-top: 0;  
  background-color: #FFFFFF;
  font-family: BasisGrotesquePro;
}
@media (max-width: 992px) {
  html, body {
    padding-top: 40px;  
  }
}
* {
  font-size: 14px;
  font-family: BasisGrotesquePro;
}
a {
  outline: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: none !important;
  background-color: transparent;
}
p {
  margin: 4px 0 4px 0;
  font-family: BasisGrotesquePro;
}
a.no-cursor {
  cursor: default;
}
h2 {
  font-size: 1.75rem;
  color: #1C1C1C !important;
  text-transform: none;
  margin: 0 0 10px 0;
  padding: 0;
}
h3 {
  font-size: 1.45rem;
  color: #294d75 !important;
  margin: 0 0 4px 0;
  padding: 0;
}
h4 {
  font-size: 1.25rem;
  color: #000000;
  margin: 0 0 4px 0;
  padding: 0;
}
h5 {
  font-size: 1.10rem;
  margin: 0 0 4px 0;
  color: #000000;
  padding: 0;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.35rem;
  }
  h5 {
    font-size: 1.00rem;
  }
}

/*--------------------------------------------------------------------------
 TOP
--------------------------------------------------------------------------*/
#goto_top {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 9998;
  display: none; 
  opacity: 0.8; 
  background-color: #3cbe64; 
  color: #fff; 
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
#goto_top:hover {
  background-color: #1c232a; 
}

/*--------------------------------------------------------------------------
 AJAX
--------------------------------------------------------------------------*/
#ajax_loader {
  display: none;
  background-color: #cccccc; 
  /*background: url(../img/loaders/ajax-loader.gif) no-repeat center; */
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
}

/*--------------------------------------------------------------------------------------
  FOOTER
--------------------------------------------------------------------------------------*/
footer {
  background-color: #1C1C1C;
  padding-top: 30px;
  min-height: 90px;
}
footer .footer-container {
  margin: 0 0 0 300px;
}
@media (max-width: 992px) {
  footer .footer-container {
    margin: 0 0 0 0;
  }
}
footer a {
  outline: 0;
  color: #cccccc;
  text-decoration: none;
}
footer p {
  color: #ffffff;
  margin: 0 2px 4px 0;
  line-height: 20px;
  padding: 0;
}
footer ul li {
  margin-bottom: 4px;
}
footer hr {
  color: #747474;
  background-color: #747474;
}
footer h5 {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  padding: 0;
}
footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
footer a:focus {
  text-decoration: none;
  box-shadow: none;
}
footer .footer-copyright {
  color: #ffffff;
}

/*--------------------------------------------------------------------------
 POPOVER
--------------------------------------------------------------------------*/
.popover-body {
  padding: 4px 8px;
}
.popover p {
  padding: 0;
  font-weight: bold;
  margin: 2px 10px 2px 10px;
}
.popover p.popover-title {
  margin: 0 0 6px 0;
  text-align: center;
  padding: 4px 8px 4px 8px;
  border-bottom: 1px solid #c5c5c5;
}
.popover img.img-logo {
  width: auto;
  height: 80px;
  margin: 0 0 8px 0;
}
.popover img.img-avatar {
  width: 280px;
  height: 280px;
  margin: 0 0 8px 0;
}
.popover img.img-picture {
  height: auto;
  max-width: 200px;
  margin: 0 0 8px 0;
}

/*--------------------------------------------------------------------------------------
  DROPDOWN
--------------------------------------------------------------------------------------*/
.dropdown-menu {
  display: none;
  padding: 0.3125rem 0;
  border: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.open > .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  display: block;
  transform: scale(1);
}
.dropdown-menu.hiding {
  opacity: 0;
  display: block;
  transform: scale(0);
}
.dropdown-menu .disabled > a {
  color: #777;
}
.dropdown-menu .disabled > a:focus,
.dropdown-menu .disabled > a:hover {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  color: #777;
}
.dropdown-menu .dropdown-item,
.dropdown-menu li > a {
  position: relative;
  width: auto;
  display: flex;
  flex-flow: nowrap;
  align-items: center;
  color: #333;
  font-weight: normal;
  text-decoration: none;
  font-size: 1.0125rem;
  border-radius: 0.125rem;
  margin: 0 0.3125rem;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
  min-width: 7rem;
  padding: 0.625rem 1.25rem;
  overflow: hidden;
  line-height: 1.428571;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .dropdown-menu .dropdown-item,
  .dropdown-menu li > a {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a:active {
  box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(156, 39, 176, 0.4);
  background-color: #3cbe64;
  color: #FFFFFF;
}
.dropdown-header {
  font-size: 0.75rem;
  padding-top: .625rem;
  padding-bottom: .625rem;
  text-transform: none;
  color: #777;
  line-height: 1.428571;
  font-weight: inherit;
}
.togglebutton {
  vertical-align: middle;
}
.togglebutton,
.togglebutton label,
.togglebutton input,
.togglebutton .toggle {
  user-select: none;
}
.togglebutton label {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.26);
}

/*--------------------------------------------------------------------------------------
  CONTAINER BLOCK
--------------------------------------------------------------------------------------*/
.container-block {
  padding-top: 24px;
  margin-left: 10px;
  padding-bottom: 48px;
  min-height: 680px;
}
@media (max-width: 992px) {
  .container-block {
    padding-top: 28px;
    padding-bottom: 38px;
    min-height: 480px;
  }
}
@media (max-width: 767px) {
  .container-block {
    padding-top: 18px;
    padding-bottom: 28px;
    min-height: 480px;
  }
}

/*--------------------------------------------------------------------------
 PROCESS WINDOW
--------------------------------------------------------------------------*/
.process-window-content {
  display: none;
}
.process-window-content.active {
  display: block;
}

/*--------------------------------------------------------------------------------------
  CAPTCHA
--------------------------------------------------------------------------------------*/
.captcha {
  margin: 8px auto;
}
.captcha img {
  width: 100%;
  max-width: 220px;
  margin-top: 10px;
}
.captcha-image {
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.captcha .form-group {
  margin-top: 10px;
}

/*--------------------------------------------------------------------------
 ARTICLE
--------------------------------------------------------------------------*/
div.display-article {
}
div.display-article p {
  font-size: 14px;
  margin: 0 0 4px 0;
  padding: 0;
}
div.display-article h2 {
  line-height: 1.0;
}

/*--------------------------------------------------------------------------
 DIVIDER
--------------------------------------------------------------------------*/
.divider {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  overflow: hidden;
  background-color: #c5c5c5;
}
.divider-small {
  width: 100%;
  height: 1px;
  margin: 2px 0;
  overflow: hidden;
  background-color: #c5c5c5;
}

/*--------------------------------------------------------------------------
 DISPLAY AVATAR
--------------------------------------------------------------------------*/
.display-avatar {
  margin: 0 auto;
  max-width: 300px;
  max-height: 300px;
}
.display-avatar img {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------------------
 DISPLAY LOGO
--------------------------------------------------------------------------*/
.display-logo {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 320px;
  max-height: 320px;
}
.display-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 320px;
}

/*--------------------------------------------------------------------------
 MODAL DIALOG
--------------------------------------------------------------------------*/
.modal-dialog {
  padding: 4px 20px 4px 20px;
  border: 0;
}
.modal-dialog {
  width: 100%;
  background-color: #FFFFFF;
}
.modal-dialog .modal-content {
  background-color: #FFFFFF;
  padding: 0;
  border: 0;
}
.modal-dialog .modal-content .modal-body .modal-article {
  padding: 0 16px 0 16px;
}
.modal-dialog .modal-content .modal-body .modal-article p {
  font-size: 14px;
  margin: 0px 0 4px 0;
  padding: 0;
}
.modal-dialog .modal-content .modal-body .modal-article h2 {
  line-height: 1.0;
}
.modal-dialog .modal-content .modal-body .modal-scrolling {
  max-height: 440px;
  overflow-y: scroll;
}
.modal-dialog .modal-header {
  padding: 8px 8px 4px 12px;
}
.modal-dialog .modal-header i.fa {
  margin-right: 12px;
}
.modal-dialog .modal-header i.fa.fa-info,
.modal-dialog .modal-header i.fa.fa-info-circle {
  color: #06559E;
}
.modal-dialog.modal-small {
  max-width: 480px;
  width: 480px;
}
.modal-dialog .modal-footer {
  padding: 12px 4px 10px 4px;
}
@media (min-width: 992px) {
  .modal-dialog.modal-large {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-dialog.modal-large {
    max-width: 940px;
  }
}

/*--------------------------------------------------------------------------
 GRAPHIC LEGEND
--------------------------------------------------------------------------*/
.graphic-legend {
  margin: 12px 0 0 0;
}
.graphic-legend-name {
  margin: 0;
  height: 8px;
  font-size: 10px;
  margin-right: 6px;
  padding: 0 0 0 4px;
  border-left: 14px solid #c0c0c0;
}

/*--------------------------------------------------------------------------
 FORM
--------------------------------------------------------------------------*/
form {
  border: 0;
}
.form-control {
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  height: 34px;
}
p.form-control {
  height: auto;
  padding: 6px 8px 2px 8px;
  min-height: 34px;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #3cbe64;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(48, 60, 73, 0.4);
}
.form-group {
  margin-bottom: 2px;
  padding: 4px 0;
}
label.control-label {
  margin: 0 0 0 0 !important;
  padding: 0 !important;
  font-weight: bold;
}
.form-group label.control-label {
  margin: 4px 0 4px 0 !important;
  padding: 0 !important;
  font-weight: bold;
}
.form-group p.form-comment {
  margin: 0 0 12px 0 !important;
  padding: 0;
}
.form-group .control-label {
  font-weight: bold;
}
.input-group-text {
  background-color: transparent !important;
  font-size: 14px;
  height: 34px;
}
.input-group-icon {
  background-color: transparent !important;
  font-size: 18px;
}
.input-group-append .btn {
  padding: 8px 30px;
  height: 35px;
}
.input-group-append i.fa {
  font-weight: bold;
  font-size: 18px;
}
.input-group-append i.fa.active {
  color: #ff0000;
  font-weight: bold;
  font-size: 18px;
}

/*--------------------------------------------------------------------------------------
 FORM ERROR
--------------------------------------------------------------------------------------*/
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #A70D0D;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #A70D0D;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/*--------------------------------------------------------------------------
 MESSAGE ALERT
--------------------------------------------------------------------------*/
.alert {
  text-align: center;
}
.alert.alert-warning {
  background-color: #ff9e0f;
  color: #ffffff;
}
.alert.alert-warning p {
  padding: 0;
  margin: 0;
}
.alert.alert-warning a,
.alert.alert-warning .alert-link {
  color: #ffffff;
}
.alert.alert-success {
  background-color: #55b559;
  color: #ffffff;
}
.alert.alert-success p {
  padding: 0;
  margin: 0;
}
.alert.alert-success a,
.alert.alert-success .alert-link {
  color: #ffffff;
}
.alert.alert-danger {
  background-color: #A70D0D;
  color: #ffffff;
}
.alert.alert-danger p {
  padding: 0;
  margin: 0;
}
.alert.alert-danger a,
.alert.alert-danger .alert-link {
  color: #ffffff;
}
.alert.alert-info {
  background-color: transparent;
  border-color: transparent;
  font-style: italic;
  color: #3cbe64;
  padding: 0;
}
.alert.alert-info p {
  padding: 0;
  margin: 0;
}
.alert.alert-info a,
.alert.alert-info .alert-link {
  color: #ffffff;
}

/*--------------------------------------------------------------------------
 TABLE
--------------------------------------------------------------------------*/
.table {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.table thead tr th {
  padding: 12px 14px;
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  border-top: 0;
}
.table.no-header tr:first-child td {
  border-top: 0;
}
.table td {
  vertical-align: middle;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.table.table-top td {
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}
.table-bordered {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
  border-top: 0;
}
.table-bordered tbody tr:last-child td {
  border-bottom: 0;
}
.table-bordered tbody tr:last-child {
  border-bottom: 0;
}
.table-bordered thead th:last-child,
.table-bordered tbody td:last-child {
  border-right: 0;
}
.table-bordered thead th:first-child,
.table-bordered tbody td:first-child {
  border-left: 0;
}
.table thead tr th a.ordered {
  color: #303C49 !important;
}
.table tbody tr td a {
  color: #294d75;
  cursor: pointer;
}
.table thead tr th a {
  color: #294d75;
}
.table thead tr th i.fa.fa-arrow-v,
.table thead tr th i.fa.fa-arrow-up,
.table thead tr th i.fa.fa-arrow-down {
  font-size: 12px;
}
.table.table-top td {
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.table thead tr th.language,
.table tbody tr td.language {
  text-align: center;
  min-width: 76px;
}
.table thead tr th.icon,
.table tbody tr td.icon {
  width: 48px;
  min-width: 48px;
  text-align: center;
}
.table thead tr th.icon .fa,
.table tbody tr td.icon .fa {
  font-size: 16px;
}
.table tbody tr td.image {
  width: 76px;
  min-width: 76px;
  max-width: 76px;
  text-align: center;
  padding: 8px 12px 8px 12px;
}
.table tbody tr td.image img {
  width: 100%;
}
.table tbody td.price {
  text-align: right;
}
.table thead th.check-box,
.table tbody td.check-box {
  width: 54px;
  text-align: center;
}
.table tbody td.check-box {
  padding-top: 0;
}
.table.table-top td.check-box {
  padding-top: 7px;
}
.table tbody td .form-group {
  margin: 0;
  padding: 0;
}
.table tbody td .form-group p {
  margin: 0 0 0 0;
  padding: 0;
}
.table tbody tr td .divider {
  height: 1px;
  margin: 8px 0;
  overflow: hidden;
  background-color: #c5c5c5;
}
.table tbody tr td form {
  padding: 0;
  margin: 0;
}
.table.no-header tr:first-child td {
  border-top: 0;
}
.table.table-inline th,
.table.table-inline td {
  padding: 8px 18px 8px 18px;
}
.table.table-inline th {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .table thead tr th.table-hidden-lg,
  .table tbody tr td.table-hidden-lg {
    display: none;
  }
}
@media (max-width: 767px) {
  .table thead tr th.table-hidden-md,
  .table tbody tr td.table-hidden-md {
    display: none;
  }
}
@media (max-width: 575px) {
  .table thead tr th.table-hidden-sm,
  .table tbody tr td.table-hidden-sm {
    display: none;
  }
}
.table tbody tr td.img-thumb {
  width: 100px;
  height: 60px;
  text-align: center;
}
.table tbody tr td.img-thumb img {
  padding: 0;
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  margin: 0 auto 0 auto;
}

/*--------------------------------------------------------------------------
 TABLE
--------------------------------------------------------------------------*/
.table.table-list {
  margin-bottom: 24px;
}
.table.table-list tr {
  height: 60px;
}
.table.table-list thead tr th {
  font-size: 1.3875em;
  font-weight: normal;
  color: #ffffff !important;
  padding: 8px 18px;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #3cbe64; 
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  border-top: 0;
}
.table.table-list tbody tr td {
  font-size: 1.0875em;
  padding: 6px 18px 8px 18px;
  vertical-align: middle;
}
.table.table-list.table-top tbody tr td {
  vertical-align: top;
}
.table.table-list tbody tr:last-child td {
  border-bottom: 0;
}
.table.table-list tbody tr {
  transition: .2s ease-in;
}
.table-bordered.table-list {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 991px) {
  .table-list thead tr th.table-hidden-lg,
  .table-list tbody tr td.table-hidden-lg {
    display: none;
  }
}
@media (max-width: 767px) {
  .table-list thead tr th.table-hidden-md,
  .table-list tbody tr td.table-hidden-md {
    display: none;
  }
}
@media (max-width: 575px) {
  .table-list thead tr th.table-hidden-sm,
  .table-list tbody tr td.table-hidden-sm {
    display: none;
  }
}

/*--------------------------------------------------------------------------
 TABLE RESPONSIVE
--------------------------------------------------------------------------*/
.table-responsive {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive form {
  padding: 0;
  margin: 0;
  border: 0;
}

/*--------------------------------------------------------------------------
 REQUIRED
--------------------------------------------------------------------------*/
.required {
  color: red;
  width: auto;
  float: none;
  display: inline;
  margin: 0 6px 0 6px;
}
p.text-required {
  margin: 6px 0 12px 0 !important;
}

/*--------------------------------------------------------------------------
 BUTTON
--------------------------------------------------------------------------*/
.btn {
  position: relative;
  padding: 8px 20px;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.428571;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: 0.2rem;
  outline: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
}
.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  outline: 0;
}
.btn.disabled,
.btn:disabled {
  cursor: default;
}
.btn.btn-primary,
a.btn.btn-primary {
  color: #E2E3E4 !important;
  background-color: #303C49;
  border-color: #303C49;
}
.btn.btn-primary:focus,
.btn.btn-primary.focus,
.btn.btn-primary:hover {
  color: #E2E3E4 !important;
  background-color: #1c232a;
  border-color: #181e24;
}
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary:not(:disabled):not(.disabled).active {
  color: #E2E3E4 !important;
  cursor: initial;
  background-color: #1c232a;
  border-color: black;
}
.btn.btn-primary:active:hover,
.btn.btn-primary:active:focus,
.btn.btn-primary:active.focus,
.btn.btn-primary.active:hover,
.btn.btn-primary.active:focus,
.btn.btn-primary.active.focus {
  color: #E2E3E4 !important;
  background-color: #1c232a;
  border-color: #181e24;
}
.btn.btn-primary.disabled:focus,
.btn.btn-primary.disabled.focus,
.btn.btn-primary:disabled:focus,
.btn.btn-primary:disabled.focus {
  background-color: #303C49;
  border-color: #303C49;
}
.btn.btn-primary.disabled:hover,
.btn.btn-primary:disabled:hover {
  background-color: #303C49;
  border-color: #303C49;
}
.btn.btn-secondary,
a.btn.btn-secondary {
  color: #fff !important;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn.btn-secondary:focus,
.btn.btn-secondary.focus,
.btn.btn-secondary:hover {
  color: #333333 !important;
  background-color: #f2f2f2;
  border-color: #adadad;
}
.btn.btn-secondary:active,
.btn.btn-secondary.active,
.btn.btn-secondary:not(:disabled):not(.disabled):active,
.btn.btn-secondary:not(:disabled):not(.disabled).active {
  color: #333333 !important;
  background-color: #f2f2f2;
  border-color: #adadad;
  box-shadow: 0 2px 2px 0 rgba(250, 250, 250, 0.14), 0 3px 1px -2px rgba(250, 250, 250, 0.2), 0 1px 5px 0 rgba(250, 250, 250, 0.12);
}
.btn.btn-secondary:active:hover,
.btn.btn-secondary:active:focus,
.btn.btn-secondary:active.focus,
.btn.btn-secondary.active:hover,
.btn.btn-secondary.active:focus,
.btn.btn-secondary.active.focus {
  color: #333333 !important;
  background-color: #f2f2f2;
  border-color: #8c8c8c;
}
.btn.btn-secondary.disabled:focus,
.btn.btn-secondary.disabled.focus,
.btn.btn-secondary:disabled:focus,
.btn.btn-secondary:disabled.focus {
  background-color: #fafafa;
  border-color: #ccc;
}
.btn.btn-secondary.disabled:hover,
.btn.btn-secondary:disabled:hover {
  background-color: #fafafa;
  border-color: #ccc;
}
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:hover {
  box-shadow: 0 14px 26px -12px rgba(250, 250, 250, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(250, 250, 250, 0.2);
}
.btn.btn-info,
a.btn.btn-info {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
  box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
}
.btn.btn-info:focus,
.btn.btn-info.focus,
.btn.btn-info:hover {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
}
.btn.btn-info:active,
.btn.btn-info.active,
.btn.btn-info:not(:disabled):not(.disabled):active,
.btn.btn-info:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
  box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
}
.btn.btn-info:active:hover,
.btn.btn-info:active:focus,
.btn.btn-info:active.focus,
.btn.btn-info.active:hover,
.btn.btn-info.active:focus,
.btn.btn-info.active.focus {
  color: #fff !important;
  background-color: #008798;
  border-color: #008798;
}
.btn.btn-info.disabled:focus,
.btn.btn-info.disabled.focus,
.btn.btn-info:disabled:focus,
.btn.btn-info:disabled.focus {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.btn.btn-info.disabled:hover,
.btn.btn-info:disabled:hover {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.btn.btn-info:focus,
.btn.btn-info:active,
.btn.btn-info:hover {
  box-shadow: 0 14px 26px -12px rgba(0, 188, 212, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 188, 212, 0.2);
}
.btn.btn-success,
a.btn.btn-success {
  color: #fff !important;
  background-color: #4caf50;
  border-color: #4caf50;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.btn.btn-success:focus,
.btn.btn-success.focus,
.btn.btn-success:hover {
  color: #fff !important;
  background-color: #47a44b;
  border-color: #39843c;
}
.btn.btn-success:active,
.btn.btn-success.active,
.btn.btn-success:not(:disabled):not(.disabled):active,
.btn.btn-success:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #47a44b;
  border-color: #39843c;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.btn.btn-success:active:hover,
.btn.btn-success:active:focus,
.btn.btn-success:active.focus,
.btn.btn-success.active:hover,
.btn.btn-success.active:focus,
.btn.btn-success.active.focus {
  color: #fff !important;
  background-color: #47a44b;
  border-color: #255627;
}
.btn.btn-success.disabled:focus,
.btn.btn-success.disabled.focus,
.btn.btn-success:disabled:focus,
.btn.btn-success:disabled.focus {
  background-color: #4caf50;
  border-color: #4caf50;
}
.btn.btn-success.disabled:hover,
.btn.btn-success:disabled:hover {
  background-color: #4caf50;
  border-color: #4caf50;
}
.btn.btn-success:focus,
.btn.btn-success:active,
.btn.btn-success:hover {
  box-shadow: 0 14px 26px -12px rgba(76, 175, 80, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2);
}
.btn.btn-warning,
a.btn.btn-warning {
  color: #fff !important;
  background-color: #ff9800;
  border-color: #ff9800;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.btn.btn-warning:focus,
.btn.btn-warning.focus,
.btn.btn-warning:hover {
  color: #fff !important;
  background-color: #f08f00;
  border-color: #c27400;
}
.btn.btn-warning:active,
.btn.btn-warning.active,
.btn.btn-warning:not(:disabled):not(.disabled):active,
.btn.btn-warning:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #f08f00;
  border-color: #c27400;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.btn.btn-warning:active:hover,
.btn.btn-warning:active:focus,
.btn.btn-warning:active.focus,
.btn.btn-warning.active:hover,
.btn.btn-warning.active:focus,
.btn.btn-warning.active.focus {
  color: #fff !important;
  background-color: #f08f00;
  border-color: #804c00;
}
.btn.btn-warning.disabled:focus,
.btn.btn-warning.disabled.focus,
.btn.btn-warning:disabled:focus,
.btn.btn-warning:disabled.focus {
  background-color: #ff9800;
  border-color: #ff9800;
}
.btn.btn-warning.disabled:hover,
.btn.btn-warning:disabled:hover {
  background-color: #ff9800;
  border-color: #ff9800;
}
.btn.btn-warning:focus,
.btn.btn-warning:active,
.btn.btn-warning:hover {
  box-shadow: 0 14px 26px -12px rgba(255, 152, 0, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 152, 0, 0.2);
}
.btn.btn-danger,
a.btn.btn-danger {
  color: #fff !important;
  background-color: #A70D0D;
  border-color: #f44336;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.btn.btn-danger:focus,
.btn.btn-danger.focus,
.btn.btn-danger:hover {
  color: #fff !important;
  background-color: #740909;
  border-color: #e11b0c;
}
.btn.btn-danger:active,
.btn.btn-danger.active,
.btn.btn-danger:not(:disabled):not(.disabled):active,
.btn.btn-danger:not(:disabled):not(.disabled).active {
  color: #fff !important;
  background-color: #740909;
  border-color: #e11b0c;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.btn.btn-danger:active:hover,
.btn.btn-danger:active:focus,
.btn.btn-danger:active.focus,
.btn.btn-danger.active:hover,
.btn.btn-danger.active:focus,
.btn.btn-danger.active.focus {
  color: #fff !important;
  background-color: #740909;
  border-color: #a21309;
}
.btn.btn-danger.disabled:focus,
.btn.btn-danger.disabled.focus,
.btn.btn-danger:disabled:focus,
.btn.btn-danger:disabled.focus {
  background-color: #740909;
  border-color: #f44336;
}
.btn.btn-danger.disabled:hover,
.btn.btn-danger:disabled:hover {
  background-color: #740909;
  border-color: #f44336;
}
.btn.btn-danger:focus,
.btn.btn-danger:active,
.btn.btn-danger:hover {
  box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2);
}
.btn.btn-picture {
  border: 0;
  padding: 8px 8px 4px 8px;
  border-radius: 10px;
  background-color: transparent;
  text-align: center; 
}
.btn.btn-picture:focus,
.btn.btn-picture:active,
.btn.btn-picture:hover {
  box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2);
}
.btn.btn-picture:hover {
  color: #fff !important;
  background-color: #303C49;
  border-color: #303C49;
}
.btn.btn-picture.disabled-picture:hover {
  background-color: #aa4444;
  color: #fff !important;
}
.btn.btn-input-group {
  font-size: .85rem;  
  padding-top: 8px;
  height: 34px;
}
.btn.btn-small {
  padding: 8px 12px;
  height: 36px;
  width: 36px;
}

/*--------------------------------------------------------------------------
 BTN TOOLBAR
--------------------------------------------------------------------------*/
.btn.btn-toolbox {
  padding: 6px 14px 6px 14px;
  color: #fff !important;  
  background-color: #303C49;
  font-size: 14px;
}
.btn.btn-toolbox:focus,
.btn.btn-toolbox:active,
.btn.btn-toolbox.disabled,
.btn.btn-toolbox:hover {
  color: #444444 !important;
  background-color: #e3e3e3 !important;
}
.btn-group .btn.btn-toolbox:first-child {
  border-radius: 20px 0 0 20px;
}
.btn-group .btn.btn-toolbox:last-child {
  border-radius: 0 20px 20px 0;
}
.btn.btn-link {
  font-weight: 400;
  text-align: left;
  padding: 0;
  text-decoration: none;
  color: #294d75 !important;
  background-color: transparent;
}

/*--------------------------------------------------------------------------
 BTN HOME
--------------------------------------------------------------------------*/
.btn-home {
  border: none;
  padding: 20px 40px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease 0s;
  background-color: #3cbe64 !important;
}
.btn-home:hover {
  color: #404040 !important;
  font-weight: 700 !important;
  letter-spacing: 3px;
  background: none;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  transition: all 0.3s ease 0s;
}

/*--------------------------------------------------------------------------
 DISPLAY DOWNLOAD
--------------------------------------------------------------------------*/
.display-download {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: start;
  align-items: flex-start;
}
.display-download .display-download-left {
  width: 66px;
  padding: 0 4px;
  text-align: center;
}
.display-download .display-download-left .btn-picture i.fa {
  font-size: 28px;
}
.display-download .display-download-body {
  text-align: left;
  padding-top: 2px;
  min-height: 40px;
  width: 100%;
}
.display-download .display-download-body p {
  padding: 2px 0 0 0;
  margin: 0;
}
.display-download .display-download-body h3 {
  font-size: 1.15rem;
  color: #294d75 !important;
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------------------
 DISPLAY BREADCRUMB
--------------------------------------------------------------------------*/
.display-breadcrumb {
  text-align: center;
  padding: 35px 20px 25px 20px;
  background: linear-gradient(60deg, #404C59, #303C49);
}
.display-breadcrumb h3 {
  color: #fff;
}
.display-breadcrumb h3 {
  font-weight: 500;
  font-size: 2.25rem;
  text-transform: uppercase;
}
.display-breadcrumb ol {
  background: transparent;
  padding: 0;
  margin: 0;
}
.display-breadcrumb ol .display-breadcrumb-item {
  float: none;
  display: inline-block;
  text-transform: uppercase;
}
.display-breadcrumb ol .display-breadcrumb-item a {
  color: #fff;
}
.display-breadcrumb .display-breadcrumb-item.active {
  color: #ccc;
  margin: 0;  
}
.display-breadcrumb .display-breadcrumb-item + .display-breadcrumb-item {
  padding-left: 0.5rem;
}
.display-breadcrumb .display-breadcrumb-item + .display-breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
}
.display-breadcrumb .display-breadcrumb-item + .display-breadcrumb-item::before {
  font-family: FontAwesome;
  content: "\f105";
  color: #fff;
}
@media (max-width: 576px) {
  .display-breadcrumb h3 {
    font-size: 1.65rem;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY SELECT
--------------------------------------------------------------------------*/
.display-select {
  margin-bottom: 40px;
}
.display-select a {
  display: block;
  border-radius: 0;
  border: 1px solid #d5d5d5;
  padding: 14px 20px 10px 20px;
}
.display-select a h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #1C1C1C !important;
  font-weight: 500;
}
.display-select a:hover {
  border: 1px solid #b5b5b5;
}
.display-select a span {
  margin-top: 2px;
  display: block;
  font-size: 0.9rem;
  color: #848484;
  font-weight: 400;
}
.display-select a span.comment {
  text-transform: none;
  text-align: justify;
  text-justify: inter-word;  
  font-style: italic !important;
}
.display-select a.active {
  background-color: #3cbe64;
  color: #fff;
  position: relative;
}
.display-select a.active h3 {
  color: #fff !important;
}
.display-select a h3 span {
  float: left;
  width: 14px;
  height: 14px;
  margin: 3px 10px 0 0;
  background-color: #1C1C1C;
  border-radius: 50%;
}
.display-select a.active h3 span {
  background-color: #fff !important;
}
.display-select a.active span {
  color: #fff;
}
.display-select a.active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #3cbe64 transparent transparent;
}
@media (max-width: 767px) {
  .display-select {
    margin-bottom: 12px;
  }
  .display-select a.active:after {
    content: none;
  }
}
.display-select-vertical {
  height: 100%;
}
.display-select-vertical a {
  display: block;
  border-radius: 0;
  border: 1px solid #d5d5d5;
  padding: 20px 20px;
  height: 100%;
}
.display-select-vertical a h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #3cbe64 !important;
  font-weight: 500;
}
.display-select-vertical a.active h3 {
  color: #fff !important;
}
.display-select-vertical a h3 span {
  float: left;
  width: 14px;
  height: 14px;
  margin: 3px 10px 0 0;
  background-color: #1C1C1C;
  border-radius: 50%;
}
.display-select-vertical a.active h3 span {
  background-color: #fff !important;
}
.display-select-vertical a:hover {
  border: 1px solid #b5b5b5;
}
.display-select-vertical a span {
  margin-top: 2px;
  display: block;
  font-size: 0.9rem;
  color: #848484;
  font-weight: 400;
}
.display-select-vertical a span.comment {
  text-transform: none;
  text-align: justify;
  text-justify: inter-word;  
  font-style: italic !important;
}
.display-select-vertical a.active {
  background-color: #3cbe64;
  color: #fff !important;
  position: relative;
}
.display-select-vertical a.active:hover {
  color: #fff;
}
.display-select-vertical a.active span {
  color: #fff;
}
.display-select-vertical a.active:after {
  content: '';
  position: absolute;
  left: 100%;
  right: 0;
  bottom: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #3cbe64;
}
@media (max-width: 991px) {
  .display-select-vertical a.active:after {
    content: none;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY HOME SLIDER
--------------------------------------------------------------------------*/
.display-home-slider {
  
}
.display-home-slider .carousel-caption .home-slider-caption {
  max-width: 380px;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(74, 127, 174, 0.7);
  padding: 12px 20px 8px 20px;
  color: #ffffff;
}
.display-home-slider .carousel-item p {
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  width: 100%;
}
.display-home-slider .carousel-item h5 {
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  width: 100%;
}
.display-home-slider .carousel-inner .carousel-item > img {
  height: 70vh;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
@media (max-width: 460px) {
  .display-home-slider .carousel-caption .home-slider-caption {
    display: none;
  }
}
@media (max-width: 768px) {
  .display-home-slider .carousel-inner .carousel-item > img {
    height: 30vh;
  }
  .carousel-caption {
    display: none;
  }
}

/*--------------------------------------------------------------------------
 SIDE MENU
--------------------------------------------------------------------------*/
.display-menu {
  font-family: BasisGrotesquePro;
  z-index: 1000;
  display: block;
  position: fixed;
  border-radius: 6px;
  color: #000;  
  top: 20px;
  left: 30px;
  width: 288px;
  margin: 0;
}
@media (max-width: 992px) {
  .display-menu {
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 0;
    position: fixed;
    background-color: #ffffff;
  }
}
.display-menu .display-menu-screen {
  padding: 14px;
  display: block;
  border-radius: 6px;
  /*background-color: rgba(255,255,255,0.92);*/
}
.display-menu .display-menu-mobile {
  display: none;
  position: fixed;
  background-color: #ffffff;
  z-index: 9999;
  width: 100%;
  box-shadow: 0px 10px 8px -6px rgba(0,0,0,0.24);
  -webkit-box-shadow: 0px 10px 8px -6px rgba(0,0,0,0.24);
  -moz-box-shadow: 0px 10px 8px -6px rgba(0,0,0,0.24); 
}
@media (max-width: 992px) {
  .display-menu .display-menu-mobile {
    display: block;
  }
  .display-menu .display-menu-screen {
    display: none;
  }
}
.display-menu .display-menu-screen .display-menu-logo {
  margin: 0 0 26px 0;
  max-width: 220px;
  display: block;
  width: 100%;
}
.display-menu .display-menu-screen .display-menu-account {
  display: block;
  margin-bottom: 8px;
}
.display-menu .display-menu-screen .display-menu-account p {
  font-style: 12px;
  color: #888;
  margin: 0;
}
.display-menu .display-menu-screen .display-menu-account img {
  width: 32px;
}
.display-menu .display-menu-screen .display-menu-logo img {
  height: auto;
  width: 100%;
}
.display-menu .display-menu-mobile .display-menu-picto .display-menu-open {
  display: block;
}
.display-menu .display-menu-mobile .display-menu-picto .display-menu-close {
  display: none;
}
.display-menu .display-menu-screen .display-menu-content {
  width: 260px;
}
.display-menu .display-menu-mobile .display-menu-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  z-index: 9999;
  width: 100%;
  top: 80px;
  left: 0;
  box-shadow: 0px 10px 8px -6px rgba(0,0,0,0.24);
  -webkit-box-shadow: 0px 10px 8px -6px rgba(0,0,0,0.24);
  -moz-box-shadow: 0px 10px 8px -6px rgba(0,0,0,0.24); 
}
.display-menu .display-menu-mobile .display-menu-content ul {
  margin: 20px 30px;
}
.display-menu .display-menu-mobile .display-menu-content ul.display-menu-second {
  margin: 10px 0 0 8px;
}
.display-menu .display-menu-screen .display-menu-content a,
.display-menu .display-menu-mobile .display-menu-content a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  font-size: 16px;
  color: #888;
}
.display-menu .display-menu-mobile .display-menu-display {
  background-color: #ffffff;
  height: 64px;
  width: 100%
}
.display-menu .display-menu-mobile .display-menu-logo {
  margin: 16px 0 0 28px;
  display: block;
  width: 208px;
}
.display-menu .display-menu-mobile .display-menu-logo img {
  height: auto;
  width: 100%;
}
.display-menu .display-menu-mobile .display-menu-picto {
  width: 38px;
  position: absolute;
  right: 28px;
  top: 24px;
}
.display-menu .display-menu-mobile .display-menu-picto .display-menu-open {
  display: block;
}
.display-menu .display-menu-mobile .display-menu-picto .display-menu-close {
  display: none;
}
.display-menu .display-menu-screen .display-menu-content ul li {
  margin: 0;
  padding: 8px 0 6px 0;
  border-top: 1px solid #1C1C1C;
}
.display-menu .display-menu-mobile .display-menu-content ul li {
  margin: 0;
  padding: 6px 0;
  border-top: 1px solid #1C1C1C;
}
.display-menu .display-menu-mobile .display-menu-content ul li a {
  font-size: 18px;
}
.display-menu .display-menu-mobile .display-menu-content a:hover,
.display-menu .display-menu-mobile .display-menu-content a:focus,
.display-menu .display-menu-screen .display-menu-content a:hover,
.display-menu .display-menu-screen .display-menu-content a:focus {
  text-decoration: none !important;
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #1C1C1C;
}
.display-menu .display-menu-screen .display-menu-content ul.display-menu-main {
  list-style: none;
  padding: 0;
  margin: 0;
}
.display-menu .display-menu-mobile .display-menu-content ul.display-menu-main {
  padding-left: 0;
  list-style: none;
  margin: 20px 30px;
}
.display-menu .display-menu-screen .display-menu-content ul.display-menu-second {
  padding-left: 0;
  list-style: none;
  margin: 6px 0 0 16px;
}
.display-menu .display-menu-mobile .display-menu-content ul.display-menu-second {
  padding-left: 0;
  list-style: none;
  margin: 10px 0 0 18px;
}
.display-menu .display-menu-mobile .display-menu-content ul li a span,
.display-menu .display-menu-screen .display-menu-content ul li a span {
  float: left;
  width: 8px;
  height: 8px;
  margin: 6px 0 0 0;
  background-color: transparent;
  border-radius: 50%;
}
.display-menu .display-menu-mobile .display-menu-content ul li a span {
  margin-right: 16px;
}
.display-menu .display-menu-screen .display-menu-content ul li a span {
  margin-right: 10px;
}
.display-menu .display-menu-mobile .display-menu-content ul li a.active span,
.display-menu .display-menu-mobile .display-menu-content ul li a:hover span,
.display-menu .display-menu-screen .display-menu-content ul li a.active span,
.display-menu .display-menu-screen .display-menu-content ul li a:hover span {
  background-color: #1C1C1C;
}

/*--------------------------------------------------------------------------
 DISPLAY SECTION
--------------------------------------------------------------------------*/
.display-container {
  margin: 0 0 0 320px;
}
.display-section {
  font-family: BasisGrotesquePro;
  margin: 80px 10px 80px 10px;
}
@media (max-width: 992px) {
  .display-container {
    margin: 0 0 0 0;
  }
}
.display-section .display-section-image {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
}
.display-section .display-section-row {
  /*padding: 10px 0 10px 0;*/
}
.display-section .display-section-title,
.display-section .display-section-header {
  margin: 0 0 40px 0;
  font-size: 48px;
}
.display-section .display-section-header {
  width: 50%;
  font-size: 48px;
}
.display-section .display-section-title span {
  float: left;
  width: 42px;
  height: 42px;
  margin: 6px 20px 0 0;
  background-color: #1C1C1C;
  border-radius: 50%;
}
.display-section .display-section-sub-title {
  font-size: 28px;
  font-weight: 700;
  font-family: BasisGrotesquePro;
}
.display-section .display-section-row .display-section-title {
  width: 70%;
  font-size: 48px;
  font-family: BasisGrotesquePro;
}
@media (max-width: 1492px) {
  .display-section .display-section-header {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .display-section .display-section-header {
    width: 80%;
    font-size: 38px;
  }
  .display-section .display-section-row .display-section-title {
    width: 100%;
    font-size: 38px;
  }
  .display-section .display-section-title span {
    width: 32px;
    height: 32px;
  }
}
.display-section .display-section-row .display-section-content {
  width: 70%;
}
.display-section .display-section-content p {
  font-size: 20px;
  font-family: BasisGrotesquePro;
}
.display-section .display-section-content p a {
  font-size: 20px;
  font-family: BasisGrotesquePro;
}
.display-section .display-section-column {
  padding: 20px 0 0 0;
}
.display-section .display-section-column .display-section-content {
  width: 90%;
}
.display-section .display-company-region {
  margin: 8px;
  padding: 0;
  color: #1C1C1C;
  opacity: 0.33;
  height: 28px;
  white-space: nowrap;
  overflow: hidden;
}
.display-section .display-company-region span {
  float: left;
  width: 12px;
  height: 12px;
  margin: 8px 10px 0 0;
  background-color: transparent;
  border-radius: 50%;
}
.display-section .display-company-region img {
  width: 12px;
  height: 12px;
}
.display-section .display-company-region.active {
  color: #1C1C1C;
  opacity: 1;
}
.display-section .display-company-region.active span {
  background-color: #1C1C1C;
}
.display-section .display-company-comment {
  margin-left: 32px;
}
.display-section .display-company-comment p {
  text-align: justify;
  font-style: italic;
  font-size: 14px;
}

/*--------------------------------------------------------------------------
 PAGINATION
--------------------------------------------------------------------------*/
.display-pagination-container {
  display: block;
  margin-top: 2px;
}
.display-pagination {
  line-height: 36px;
  font-size: 18px;
}
.display-pagination > span {
  display: inline-block;
}
.display-pagination  a:hover {
  background-color: #3cbe64;
  color: #fff;
}
.display-pagination .pagination-pprev,
.display-pagination .pagination-pnext {
}
.display-pagination .pagination-pnext a,
.display-pagination .pagination-pprev a {
  display: block;
  width: 36px;
  text-align: center;
  border-radius: 18px;
 }
.pagination-navigation {
  padding: 0 8px;
} 
.pagination-navigation a,
.pagination-navigation span {
  display: inline-block;
  padding: 0 5px;
  min-width: 36px;
  margin: 0 5px 5px 0;
  text-align: center;
  /*border-radius: 18px;*/
  /*background-color: #e3e3e3;*/
}
.pagination-navigation span {
  background-color: #3cbe64;
  color: #fff;
}
.pagination-navigation span.nav_ext {
  background-color: transparent;
  color: #888;
}
.pagination-navigation.pagination-padding a,
.pagination-navigation.pagination-padding span {
  padding: 0 25px;
}

/*--------------------------------------------------------------------------
 PAGINATION COUNTER
--------------------------------------------------------------------------*/
.display-counter-container {
  display: block;
  text-align: center;
}
.display-counter-container .pagination-navigation {
  margin: 0;
  padding: 0;
}
.pagination-counter {
  line-height: 36px;
  font-size: 18px;
  margin: 2px 0;
}
.pagination-counter span {
  display: inline-block;
  padding: 0 8px;
  min-width: 36px;
  margin: 0 7px 0 7px;
  text-align: center;
  border-radius: 18px;
  background-color: #3cbe64;
  color: #fff;
}
.pagination-counter span:first-child {
  margin-left: 0px;
}

/*--------------------------------------------------------------------------
 SIDE SMALL MENU
--------------------------------------------------------------------------*/
.display-small-menu {
  display: block;
  color: #000;  
  margin: 2px 0 4px 0;
  font-family: BasisGrotesquePro;
  width: 100%;
}
@media (max-width: 992px) {
  .display-small-menu {
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 24px;
  }
}
.display-small-menu {
  display: block;
  background-color: rgba(255,255,255,0.94);
}
.display-small-menu .divider {
  margin-bottom: 0;
}
.display-small-menu .display-small-menu-content {
  width: 100%;
}
.display-small-menu .display-small-menu-content a,
.display-small-menu .display-small-menu-content button {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #888;
}
.display-small-menu .display-small-menu-content a:hover,
.display-small-menu .display-small-menu-content a:focus,
.display-small-menu .display-small-menu-content button:hover,
.display-small-menu .display-small-menu-content button:focus {
  text-decoration: none !important;
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.display-small-menu .display-small-menu-content ul {
  padding: 0;
  margin: 0;
}
.display-small-menu  .display-small-menu-content ul li {
  margin: 0;
  padding: 8px 0 6px 0;
  border-top: 1px solid #c5c5c5;
}
.display-small-menu  .display-small-menu-content ul li:first-child {
  border-top: 0;
}

.display-small-menu .display-small-menu-content ul li a,
.display-small-menu .display-small-menu-content ul li button {
  font-family: BasisGrotesquePro;
  display: inline-block;
  text-align: left;
  font-size: 14px;
  padding: 2px 0;
  width: 100%;  
}
.display-small-menu .display-small-menu-content ul li button {
  border: 0;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  background-color: transparent;
}
.display-small-menu .display-small-menu-content ul li img {
  width: 10px;
  height: 10px;
}
.display-small-menu .display-small-menu-content ul li.active a,
.display-small-menu .display-small-menu-content ul li.active button {
  color: #1C1C1C;
}
.display-small-menu .display-small-menu-content ul li.active ul.display-small-menu-second li a,
.display-small-menu .display-small-menu-content ul li.active ul.display-small-menu-second li button {
  color: #888;
}
.display-small-menu .display-small-menu-content ul li.active ul.display-small-menu-second li a.active,
.display-small-menu .display-small-menu-content ul li.active ul.display-small-menu-second li button.active {
  color: #1C1C1C;
}
.display-small-menu .display-small-menu-content ul li a:hover,
.display-small-menu .display-small-menu-content ul li button:hover {
  color: #1C1C1C;
}
.display-small-menu .display-small-menu-content ul li span {
  float: left;
  width: 8px;
  height: 8px;
  margin: 6px 0 0 0;
  background-color: transparent;
  border-radius: 50%;
}
.display-small-menu .display-small-menu-content ul li span {
  margin-right: 10px;
}
.display-small-menu .display-small-menu-content ul li.active span,
.display-small-menu .display-small-menu-content ul li:hover span {
  background-color: #1C1C1C;
}

/*--------------------------------------------------------------------------
 DISPLAY SMALL SECTION
--------------------------------------------------------------------------*/
.display-page-header {
  font-family: BasisGrotesquePro;
  margin: 10px 10px 30px 0;
}
.display-page-header .display-page-header-title {
  width: 100%;
  color: #1C1C1C;
  font-size: 48px;
  font-family: BasisGrotesquePro;
}
.display-page-header .display-page-header-title span {
  float: left;
  width: 42px;
  height: 42px;
  margin: 6px 20px 0 0;
  background-color: #1C1C1C;
  border-radius: 50%;
}
.display-page-header .display-page-header-sub-title {
  font-size: 18px;
  font-weight: 700;
  margin-left: 70px;
  font-family: BasisGrotesquePro;
}
.display-page-content {
  padding: 0 4px 0 4px;
}
@media (max-width: 992px) {
  .display-page-header .display-page-header-title {
    font-size: 28px;
  }
  .display-page-header .display-page-header-title span {
    width: 28px;
    height: 28px;
  }
  .display-page-header .display-page-header-sub-title {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY MESSAGE
--------------------------------------------------------------------------*/
.display-message {
  margin: 12px 4px 2px 4px !important;
  font-weight: 400;
  font-size: 14px;
  color: #444;
}

/*--------------------------------------------------------------------------
 DISPLAY PROFILE
--------------------------------------------------------------------------*/
.display-profile {
}
.display-profile .display-profile-body {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  display: -ms-flexbox;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px 20px 16px 20px;
}
.display-profile.bordered .display-profile-body {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.display-profile .display-profile-body {
  border-top: 1px solid #C8C8C8;
}
.display-profile .display-profile-body p {
  font-size: 1.00rem;
  color: #000 !important;
  margin: 0 0 0 0;
  padding: 0;
}
.display-profile .display-profile-body h1 {
  font-size: 1.25rem;
  color: #294d75 !important;
  margin: 0 0 8px 0;
  padding: 0;
}
.display-profile .display-profile-body h2 {
  color: #444;
  font-size: 14px;
  font-weight: 400;
}
.display-profile .display-profile-body h3 {
  font-size: 18px;
  color: #1C1C1C !important;
  font-weight: 700;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-profile .display-profile-body h5 {
  font-size: 16px;
  color: #1C1C1C !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-profile .display-profile-body h3 span {
  float: left;
  width: 14px;
  height: 14px;
  margin: 3px 10px 0 0;
  background-color: #1C1C1C;
  border-radius: 50%;
}
.display-profile .display-profile-body .display-profile-left {
  width: 84px;
  padding: 4px 18px 0 0;
  text-align: center;
}
.display-profile .display-profile-body .display-profile-large {
  width: 196px;
  padding: 4px 28px 4px 8px;
  text-align: center;
}
.display-profile .display-profile-body .display-profile-medium {
  width: 146px;
  padding: 4px 18px 0 8px;
  text-align: center;
}
.display-profile .display-profile-body .display-profile-content {
  width: 100%;
}
.display-profile .display-profile-body .display-profile-left img.logo,
.display-profile .display-profile-body .display-profile-large img.logo,
.display-profile .display-profile-body .display-profile-medium img.logo {
  width: 100%;
}
.display-profile .display-profile-body .display-profile-left img.avatar,
.display-profile .display-profile-body .display-profile-large img.avatar,
.display-profile .display-profile-body .display-profile-medium img.avatar {
  width: 100%;
}

/*--------------------------------------------------------------------------
 DISPLAY TITLE
--------------------------------------------------------------------------*/
h3.display-title {
  font-size: 20px;
  color: #1C1C1C !important;
  font-weight: 700;
  margin: 0 0 8px 0;
  padding: 0;
}
h3.display-title span {
  float: left;
  width: 16px;
  height: 16px;
  margin: 3px 10px 0 0;
  background-color: #1C1C1C;
  border-radius: 50%;
}

/*--------------------------------------------------------------------------
 DISPLAY HEADER
--------------------------------------------------------------------------*/
.display-header {
  background-color: #3cbe64;
  padding: 8px 12px 4px 12px;
  margin-bottom: 10px;
  margin-top: 16px;
}
.display-header:first-child {
  margin-top: 2px;
}
.display-header p {
  margin: 0;
  padding: 0;
  color: #f4f4f4 !important;
  font-size: 16px !important;
}
.display-header i.fa {
  font-size: 28px;
}
.display-header .divider {
  margin-top: 6px;
  padding: 0;
}

/*--------------------------------------------------------------------------
 DISPLAY COMMENT
--------------------------------------------------------------------------*/
.display-comment {
  margin: 2px 0 2px 0 !important;
  font-size: 12px !important;
  text-align: left;
  color: #000000;
}
.display-comment.display-comment-justify {
  text-align: justify !important;
  font-size: 12px !important;
}
/*.display-comment::before {
  font-family: "FontAwesome";
  font-size: 10px;
  position: relative;
  content: "\f10d";
  font-weight: normal;
  margin-right: 8px;
  color: #1C1C1C;
}
.display-comment::after {
  font-family: "FontAwesome";
  font-size: 10px;
  position: relative;
  content: "\f10e";
  font-weight: normal;
  margin-left: 8px;
  color: #1C1C1C;  
}*/

/*--------------------------------------------------------------------------
 DISPLAY PUBLICATION
--------------------------------------------------------------------------*/
.display-publication {
  /*display: flex;*/
}
.display-publication .display-publication-body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 4px 4px 0 0;
}
.display-publication  .display-publication-body p {
  font-size: 1.00rem;
  color: #000 !important;
  margin: 0 0 0 0;
  padding: 0;
}
.display-publication .display-publication-body .display-publication-infos {
  border-top: 1px solid #c0c0c0;
  padding: 8px 0 16px 0;
  width: 100%;
}
.display-publication .display-publication-body .display-publication-content {
  width: 100%;
}
.display-publication .display-publication-body .display-publication-content img {
  width: 100%;
}
.display-publication .display-publication-body .display-publication-content .btn.btn-link {
  margin-top: 12px;
}
.display-publication .display-publication-body .display-publication-infos .display-comment {
  padding: 0;
}

/*--------------------------------------------------------------------------
 DISPLAY HAPPENING
--------------------------------------------------------------------------*/
.display-happening {
  
}
.display-happening .display-happening-body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  margin-bottom: 0;
}
.display-happening  .display-happening-body p {
  font-size: 1.00rem;
  color: #000 !important;
  margin: 0 0 0 0;
  padding: 0;
}
.display-happening .display-happening-body .display-happening-infos {
  border-top: 1px solid #d9d9d9;
  padding: 8px 0 16px 0;
  width: 100%;
}
.display-happening .display-happening-body .display-happening-infos {
  padding: 8px 10px 16px 10px;
}
.display-happening .display-happening-body .display-happening-content {
  width: 100%;
}
.display-happening .display-happening-body .display-happening-content img {
  width: 100%;
}
.display-happening .display-happening-body .display-happening-content .btn.btn-link {
  margin-top: 12px;
}
.display-happening .display-happening-body .display-happening-infos .display-comment {
  padding: 0;
}
/*--------------------------------------------------------------------------
 DISPLAY DATE
--------------------------------------------------------------------------*/
.display-date {
  color: #fff;
  text-align: center;
  padding: 8px 8px 8px 8px;
  background-color: #3cbe64;
  border-radius: 4px 4px 0 0;
}
.display-date.display-date-header {
  background-color: #3cbe64;
  padding: 12px 8px 10px 8px;
  border-radius: 4px 4px 0 0;
}
.display-date.display-date-header h3 {
  font-size: 18px;
  font-weight: normal;
  color: #f4f4f4 !important;
  padding: 0;
  margin: 0;
}
.display-date .day {
  display: block;
  margin: 2px 0 4px 0;
  font-size: 36px;
  font-weight: 100;
  line-height: 1;
  color: #fff;
}
.display-date .month {
  display: block;
  margin: 4px 0 4px 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.display-date .year {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

/*--------------------------------------------------------------------------
 DISPLAY CATEGORY FILTER
--------------------------------------------------------------------------*/
#category-filter {
  padding: 0;
  margin: 4px 0 6px 0;
  list-style: none;
  text-align: center;
}
#category-filter li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 4px;
  margin-bottom: 5px;
  color: #E2E3E4 !important;
  background-color: #303C49;
  transition: all 0.3s ease-in-out;
}
#category-filter li:hover,
#category-filter li.filter-active {
  background: #3cbe64;
  color: #fff;
}
#category-filter li:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------------------
 IEMS BRACJET
--------------------------------------------------------------------------*/
.row .item .item-wrapper {
  height:100%
}
.row .item .item-wrapper .item-bracket {
  border-color: #abb6c3;
  border-style: solid;
  border-width: .125rem;
  width: 1.125rem
}
.row .item .item-wrapper .item-bracket.item-bracket-left {
  border-right-width: 0;
  margin-right:. 375rem
}
.row .item .item-wrapper .item-bracket.item-bracket-right {
  border-left-width: 0;
  margin-left: .375rem
}
.row .item .item-wrapper .item-container {
  padding: 0.625rem 0;
  width: 100%
}
.row .item .item-wrapper .item-container .user-input .input-group {
  border-bottom: 1px solid #acb1b6;
  margin: 0 0 1.5rem;
  padding-bottom: .75rem
}
.row .item .item-wrapper .item-container .user-input .input-group input {
  background: 0 0;
  border: none;
  color: #303c49;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0;
  padding: 0
}

/*--------------------------------------------------------------------------
 DISABLED REMOVED
--------------------------------------------------------------------------*/
.info {
  color: #17a2b8 !important;
}
.success {
  color: #55b559 !important;
}
.warning {
  color: #aa4444 !important;
}
.removed {
  color: #aa4444 !important;
}
.enabled {
  color: #3b6ea6 !important;
}
.disabled {
  color: #aa4444 !important;
}
.default {
  color: #294d75 !important;
}
.background-removed {
  background-color: #44aa44;
}
.background-enabled {
  background-color: #44aa44;
}
.background-disabled {
  background-color: #aa4444;
}
.background-default {
  background-color: #3b6ea6;
}

/*--------------------------------------------------------------------------
 DISPLAY SLIDER
--------------------------------------------------------------------------*/
.display-slider {
  margin: 40px 0 0 0;
}
.display-slider .display-slider-content {
  margin: 0 8px;
}
.display-slider .display-slider-content h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  font-family: BasisGrotesquePro;
}
.display-slider .display-slider-content h5 {
  padding: 0;
  margin: 0 0 2px 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  font-family: BasisGrotesquePro;
}
.display-slider .display-slider-content p {
  font-family: BasisGrotesquePro;
  font-size: 18px;
  line-height: 20px;
  padding: 0;
  margin: 4px 0;
}
.display-slider .display-slider-content img {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}
.display-slider .display-slider-content .display-slider-date {
  padding: 0;
  margin: 0 0 4px 0;
  font-size: 16px;
  line-height: 18px;
  font-family: BasisGrotesquePro;
}

/*--------------------------------------------------------------------------
 DISPLAY HOME SLICK SLIDE
--------------------------------------------------------------------------*/
.slick-slide {
  margin:  0;
}
.slick-slide img {
  width: 100%;
}
.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;
  height: 100%;
  min-height: 1px;
 text-align: center; 
}
[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-prev-prev,
.slick-next-next {
  font-size: 20px;
  position: absolute;
  color: #1C1C1C;
  border: 0;
  background: none;
  z-index: 1;
  cursor: pointer;
  /*background-color: #ffffff;
  border-radius: 50%;*/
  width: 40px;
  height: 40px;
  opacity: 0.8; 
}

/*--------------------------------------------------------------------------
 DISPLAY HOME SLICK SLIDE
--------------------------------------------------------------------------*/
.slick-prev-prev {
  top: 80px;
  left: 20px;
  /*color: #1C1C1C;
  padding: 6px 10px 6px 10px;*/
}
.slick-next-next {
  top: 80px;
  right: 22px;
  text-align: right;
  /*color: #1C1C1C;
  padding: 6px 10px 6px 10px;*/
}
@media (min-width: 992px) {
  .slick-prev-prev,
  .slick-next-next {
    top: 100px;
  }
}
@media (min-width: 1200px) {
  .slick-prev-prev,
  .slick-next-next {
    top: 120px;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY PANEL
--------------------------------------------------------------------------*/
.display-panel {
  border: 0;
  margin-top: 0;
  font-size: .875rem;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #1C1C1C;
  width: 100%;
}
.display-panel p {
  margin: 0 0 4px 0;
}

/*--------------------------------------------------------------------------
 DISPLAY RECTANGLE
--------------------------------------------------------------------------*/
.display-rectangle {
  margin: 18px 0;
}
.display-rectangle.no-margin {
  padding: 0 15px;
}
.display-rectangle .col-md-2,
.display-rectangle .col-md-3,
.display-rectangle .col-md-4,
.display-rectangle .col-md-6,
.display-rectangle .col-md-8,
.display-rectangle .col-md-12,
.display-rectangle .col-lg-2,
.display-rectangle .col-lg-3,
.display-rectangle .col-lg-4,
.display-rectangle .col-lg-8,
.display-rectangle .col-lg-12 {
  padding: 4px 4px 4px 4px;
}
.display-rectangle.no-margin .col-md-2,
.display-rectangle.no-margin .col-md-3,
.display-rectangle.no-margin .col-md-4,
.display-rectangle.no-margin .col-md-6,
.display-rectangle.no-margin .col-md-8,
.display-rectangle.no-margin .col-md-12,
.display-rectangle.no-margin .col-lg-2,
.display-rectangle.no-margin .col-lg-3,
.display-rectangle.no-margin .col-lg-4,
.display-rectangle.no-margin .col-lg-8,
.display-rectangle.no-margin .col-lg-12 {
  margin-bottom: 20px;
  padding: 0;
}
.display-rectangle .display-rectangle-body {
  margin: 0 10px 0 10px;
}
.display-rectangle .display-rectangle-body p {
  font-size: 1.00rem;
  color: #000 !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-rectangle .display-rectangle-body h1 {
  font-size: 1.25rem;
  color: #294d75 !important;
  margin: 0 0 8px 0;
  padding: 0;
}
.display-rectangle .display-rectangle-body h2 {
  color: #444;
  font-size: 14px;
  font-weight: 400;
}
.display-rectangle .display-rectangle-body h3 {
  font-size: 1.15rem;
  color: #294d75 !important;
  margin: 0 0 4px 0;
  padding: 0;
}
.display-rectangle .display-rectangle-body .display-rectangle-image {
  position: relative;
  overflow: hidden;
  text-align:center;
}
.display-rectangle .display-rectangle-body .display-rectangle-image img {
  width: 100%; 
  filter: grayscale(100%);
  object-fit: contain; 
}
.display-rectangle .display-rectangle-body .display-rectangle-content {
  padding: 16px 0 8px 0;
  width: 100%;
  margin: 0;
}

.dropdown-toggle:after { content: none }
.dropdown-toggle:hover>.dropdown-menu {
  display: block;
}