@charset "UTF-8";

.checkbox {
  padding-left: 20px;
}

.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #5f7177;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: "FontAwesome";
  content: "";
}

.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #e9eced;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #12466D;
  border-color: #12466D;
}

.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #C02942;
  border-color: #C02942;
}

.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;
}

.radio {
  padding-left: 20px;
}

.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}

.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: border 0.15s ease-in-out;
}

.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #5f7177;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}

.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}

.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
  background-color: #12466D;
}

.radio-primary input[type="radio"]:checked + label::before {
  border-color: #12466D;
}

.radio-primary input[type="radio"]:checked + label::after {
  background-color: #12466D;
}

.radio-danger input[type="radio"] + label::after {
  background-color: #C02942;
}

.radio-danger input[type="radio"]:checked + label::before {
  border-color: #C02942;
}

.radio-danger input[type="radio"]:checked + label::after {
  background-color: #C02942;
}

.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
}

input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
  color: #fff;
}

input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
  color: #fff;
}

/** -----------------------------------------------------------------------
 *  STRUCTURE
 *  -----------------------------------------------------------------------
 */

body {
  background-color: #e9eced;
}

.main {
  margin-top: 150px;
  padding-bottom: 60px;
  background-color: #FFF;
}

/** -----------------------------------------------------------------------
 *  CONTENT
 *  -----------------------------------------------------------------------
 */

h2,
h3 {
  color: #12466D;
}

.boxed {
  width: 100%;
  height: 100%;
  padding: 15px;
}

.boxed h1,
.boxed .h1,
.boxed h2,
.boxed .h2,
.boxed h3,
.boxed .h3 {
  margin-top: 19px;
}

.flex-item .boxed {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.actions {
  margin-top: 30px;
  margin-bottom: 30px;
}

/** -----------------------------------------------------------------------
 *  HEADER 
 *  -----------------------------------------------------------------------
 */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  min-height: 170px;
  z-index: 10;
  outline: 0;
}

.header .contacts-bar {
  height: 30px;
  font-size: 11px;
  height: 30px;
  line-height: 30px;
  color: #FFF;
  z-index: 2;
  background-color: #577CA9;
  background-image: linear-gradient(90deg, rgba(18, 70, 109, 0), #12466d);
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.header .contacts-bar a {
  color: inherit;
  text-decoration: none;
}

.header .navbar {
  border-bottom: 1px solid #12466D;
}

.header .navbar-form {
  position: relative;
  padding-right: 15px;
  width: 260px;
  background-color: #e9eced;
}

.header .navbar-form::before,
.header .navbar-form::after {
  position: absolute;
  top: 0;
  content: '';
}

.header .navbar-form::before {
  left: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent #e9eced transparent transparent;
}

.header .navbar-form::after {
  width: 200%;
  height: 30px;
  left: 260px;
  background-color: #e9eced;
  background-color: #e9eced;
  background-image: linear-gradient(90deg, rgba(133, 152, 158, 0), rgba(133, 152, 158, 0.8));
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.header .navbar-form .product {
  width: 232px;
}

.header .navbar-form .btn,
.header .navbar-form .form-control {
  height: 30px;
  font-size: 11px;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.header .navbar-form .btn {
  padding-left: 0;
  padding-right: 0;
  color: #999;
}

.header .navbar-nav {
  margin-top: 22px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .header .navbar-nav {
    margin-top: 0px;
  }
}

.consorima-logo {
  width: 230px;
  height: 90px;
  margin: 0;
  background-image: url("../img/consorima-logo.gif");
  background-position: top center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .consorima-logo {
    width: 180px;
    height: 75px;
    margin-top: 4px;
    background-size: 100%;
  }
}

/** -----------------------------------------------------------------------
 *  SECTIONS
 *  -----------------------------------------------------------------------
 */

.section {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-register {
  padding-top: 0;
}

.section-register .select-areas {
  margin-top: 20px;
}

/** -----------------------------------------------------------------------
 *  FAMILIES
 *  -----------------------------------------------------------------------
 */

.family-container {
  margin-left: -15px;
  margin-right: -15px;
}

.family-container:before,
.family-container:after {
  content: " ";
  display: table;
}

.family-container:after {
  clear: both;
}

.family-container .family {
  font-size: 13px;
}

.family-container .family-root {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .family-container .family-root {
    float: left;
    width: 50%;
  }
}

.family-container .family-root .family {
  font-weight: 400;
}

.family-container .family-root .family .family {
  padding-left: 15px;
}

.family-container .family-root .boxed {
  background-color: #f4f6f6;
}

.family-container p {
  margin: 0;
  padding: 5px 0;
}

.family-container p:hover {
  font-weight: 700;
  color: #577CA9;
}

.family-container input {
  position: relative;
  float: right;
  top: 5px;
  margin: 0;
  padding: 0;
}

.family-container .checked {
  color: #C02942;
  font-weight: 700;
}

.family-container .checked:hover {
  color: #C02942;
}

/** -----------------------------------------------------------------------
 *  PRODUCTS
 *  -----------------------------------------------------------------------
 */

.aside-families {
  margin-top: 45px;
}

.area {
  font-size: 11px;
  padding-left: 15px;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 400;
  text-transform: none;
  color: #3d494d;
}

.area > p {
  margin-bottom: 0;
}

.area a {
  display: block;
  text-decoration: none;
}

.area a,
.area a:active,
.area a:visited {
  color: #85989e;
}

.area a:hover {
  color: #12466D;
  text-decoration: none;
}

.area-root {
  margin-bottom: 5px;
  padding: 5px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  text-transform: uppercase;
  color: #85989e;
  background-color: #f4f6f6;
}

.area .fa {
  margin: 3px 6px;
}

.area-root > .area {
  display: none;
  padding-top: 5px;
  padding-left: 0;
}

.product-title {
  margin-top: 30px;
}

/** -----------------------------------------------------------------------
 *  PARTNER
 *  -----------------------------------------------------------------------
 */

.partner {
  position: relative;
  margin-bottom: 15px;
}

.partner .centered-table {
  table-layout: fixed;
  height: 100px;
}

.partner-logo-container {
  min-height: 100px;
}

.partner-label {
  padding: 5px 0;
  border-top: 1px solid #85989e;
  text-align: center;
}

.partner a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

@media (max-width: 991px) {
  .partner-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/** -----------------------------------------------------------------------
 *  ARTICLES
 *  -----------------------------------------------------------------------
 */

.article-item {
  margin-bottom: 30px;
}

/** -----------------------------------------------------------------------
 *  FULLSCREEN
 *  -----------------------------------------------------------------------
 */

.fullscreen {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  padding-top: 150px;
  color: #FFF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.home .fullscreen {
  height: 100vh;
}

.home-1 .fullscreen {
  background-image: url("../img/bg-home-1.jpg");
}

.home-2 .fullscreen {
  background-image: url("../img/bg-home-2.jpg");
}

.home-3 .fullscreen {
  background-image: url("../img/bg-home-3.jpg");
}

.home-4 .fullscreen {
  background-image: url("../img/bg-home-4.jpg");
}

.areas-de-negocio .fullscreen {
  height: 100vh;
  background-image: url("../img/bg-home-00.jpg");
}

.fullscreen .section-search {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin-bottom: 30px;
  padding: 0;
}

.fullscreen + .main {
  margin-top: 100vh;
  padding-top: 0;
}

.login .main,
.forgot-password .main,
.registo .main {
  padding-top: 40px;
}

.forgot
.home .main {
  padding-bottom: 15px;
}

.forgot
.home .welcome {
  text-align: center;
}

.forgot
.home .welcome h2 {
  color: #fff;
  font-size: 50px;
  margin-top: 330px;
}

.forgot
.home .business-areas {
  position: absolute;
  width: 100%;
  bottom: 90px;
}

.forgot
.home .business-areas .section-title {
  color: #FFF;
}

.forgot
.home .box {
  position: relative;
  height: 130px;
  margin-bottom: 50px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.forgot
.home .box .image-label {
  padding-top: 5px;
}

.forgot
.home .box-label {
  padding-top: 55.5px;
  text-align: center;
}

.forgot
.home .box a {
  display: block;
  width: 100%;
  height: 100%;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid #FFF;
  text-decoration: none;
  transition: all .2s;
}

.forgot
.home .box a img {
  height: 100%;
  width: 100%;
}

.forgot
.home .box a:hover {
  color: #12466D;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: #12466D;
}

@media (max-width: 991px) {
  .forgot
  .home .business-areas .section-title {
    font-size: 26px;
  }

  .forgot
  .home .box {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .forgot
  .home .business-areas {
    bottom: 40px;
  }

  .forgot
  .home .business-areas .section-title {
    font-size: 22px;
  }

  .forgot
  .home .box {
    font-size: 15px;
    height: 100px;
  }

  .forgot
  .home .box-label {
    padding-top: 40.5px;
    text-align: center;
  }
}

.areas-de-negocio .main {
  padding-bottom: 15px;
}

.areas-de-negocio .business-areas-margin-top {
  margin-top: 86px;
}

.areas-de-negocio .business-areas {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/bg-home-00.jpg");
}

.areas-de-negocio .business-areas .section-title {
  color: #FFF;
}

.areas-de-negocio .box {
  position: relative;
  height: 130px;
  margin-bottom: 50px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.areas-de-negocio .box .image-label {
  padding-top: 5px;
}

.areas-de-negocio .box-label {
  padding-top: 33px;
  text-align: center;
}

.areas-de-negocio .box a {
  display: block;
  width: 100%;
  height: 100%;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid #FFF;
  text-decoration: none;
  transition: all .2s;
  border: 1px solid #A6A6A6;
  color: #A6A6A6;
}

.areas-de-negocio .box a img {
  height: 100%;
  width: 100%;
}

.areas-de-negocio .box a:hover {
  color: #12466D;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: #12466D;
}

@media (max-width: 991px) {
  .areas-de-negocio .business-areas .section-title {
    font-size: 26px;
  }

  .areas-de-negocio .box {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .areas-de-negocio .business-areas {
    bottom: 40px;
  }

  .areas-de-negocio .business-areas .section-title {
    font-size: 22px;
  }

  .areas-de-negocio .box {
    font-size: 15px;
    height: 100px;
  }

  .areas-de-negocio .box-label {
    padding-top: 40.5px;
    text-align: center;
  }
}

.business-areas .box {
  position: relative;
  height: 130px;
  margin-bottom: 50px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.business-areas .box .image-label {
  padding-top: 5px;
}

.business-areas .box-label {
  padding-top: 55.5px;
  text-align: center;
}

.business-areas .box a {
  display: block;
  width: 100%;
  height: 100%;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid #FFF;
  text-decoration: none;
  transition: all .2s;
}

.business-areas .box a img {
  height: 100%;
  width: 100%;
}

.business-areas .box a:hover {
  color: #12466D;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: #12466D;
}

@media (max-width: 991px) {
  .business-areas .box {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .business-areas .box {
    font-size: 15px;
    height: 100px;
  }

  .business-areas .box-label {
    padding-top: 40.5px;
    text-align: center;
  }
}

.noticias .article-item {
  margin: 0;
}

.noticias h4 {
  margin: 0;
}

.noticias small {
  color: #5f7177;
}

.noticias .article-body {
  margin-top: 5px;
}

/** -----------------------------------------------------------------------
 *  CORPORATE
 *  -----------------------------------------------------------------------
 */

.empresa .container p {
  text-align: justify;
}

.empresa .container li {
  text-align: justify;
}

.mission .boxed,
.vision .boxed {
  height: 280px;
  background-color: #e9eced;
}

@media (max-width: 991px) {
  .mission .boxed,
  .vision .boxed {
    height: auto;
    margin-bottom: 15px;
  }
}

.mission .boxed {
  color: #FFF;
  background-color: #577CA9;
  background-image: linear-gradient(134deg, rgba(18, 70, 109, 0), rgba(18, 70, 109, 0.8));
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.vision .boxed {
  background-color: #e9eced;
  background-image: linear-gradient(134deg, rgba(133, 152, 158, 0), rgba(133, 152, 158, 0.5));
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}

/** -----------------------------------------------------------------------
 *  CONTACTS
 *  -----------------------------------------------------------------------
 */

.map {
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  height: 60vh;
  margin-bottom: 50px;
  color: #FFF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

/** -----------------------------------------------------------------------
 *  FOOTER
 *  -----------------------------------------------------------------------
 */

.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #999;
  background-color: #e9eced;
  font-size: 11px;
}

.footer-title {
  margin-top: 20px;
}

.footer .logo {
  max-width: 160px;
}

.footer .copy {
  display: block;
  margin-top: 5px;
}

.footer .field-label {
  display: inline-block;
  width: 45px;
}

.footer a {
  color: inherit;
  text-decoration: none;
  outline: 0;
}

.footer a:hover,
.footer a:focus {
  color: #12466D;
}

@media (max-width: 991px) {
  .footer {
    font-size: 12px;
  }
}

/** -----------------------------------------------------------------------
 *  FLEXBOX
 *  -----------------------------------------------------------------------
 */

.flex-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-item {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

/** -----------------------------------------------------------------------
 *  CUSTOM CHECKBOXES
 *  -----------------------------------------------------------------------
 */

/** -----------------------------------------------------------------------
 *  MOUSE WHEEL
 *  -----------------------------------------------------------------------
 */

@-webkit-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

.mouse-scroll-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  z-index: 9999;
}

.mouse-scroll {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  font-size: 11px;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
  color: #FFF;
  overflow: hidden;
}

.mouse-scroll:hover,
.mouse-scroll:focus {
  color: #FFF;
  text-decoration: none;
}

.mouse-scroll .mouse {
  position: relative;
  display: block;
  width: 23px;
  height: 36px;
  margin: 0 auto 10px;
  box-sizing: border-box;
  border: 2px solid #FFF;
  border-radius: 23px;
}

.mouse-scroll .mouse .mouse-movement {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -4px 0 0 -3px;
  background: #FFF;
  border-radius: 50%;
  -webkit-animation: scroll-ani 3.5s linear infinite;
  animation: scroll-ani 3.5s linear infinite;
}

.mouse-scroll .mouse-message {
  margin: -200px 0 0 0;
  padding: 0;
  -webkit-animation: scroll-ani 3.5s linear infinite;
  animation: scroll-ani 3.5s linear infinite;
}

/** -----------------------------------------------------------------------
 *  HELPER CLASSES
 *  -----------------------------------------------------------------------
 */

.centered-table {
  position: relative;
  display: table;
  height: 100%;
  width: 100%;
}

.centered-table > .content-table {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}

.col-height {
  display: table-cell;
  float: none;
  height: 100%;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.semi-bold {
  font-weight: 600 !important;
}

.bold {
  font-weight: 700 !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.row-without-margins {
  margin-left: 0;
  margin-right: 0;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.half-padding {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.half-padding-left {
  padding-left: 8px !important;
}

.half-padding-right {
  padding-right: 8px !important;
}

.padding-small {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.margin-left {
  margin-left: 15px !important;
}

.margin-right {
  margin-right: 15px !important;
}

.no-glow {
  outline: none;
  box-shadow: none !important;
}

.no-border {
  border: none !important;
}

.mail-to {
  color: #3d494d;
}

/* caroussel */
.multi-item-carousel .carousel-inner .item {
  transition: 500ms ease-in-out left;

}
.multi-item-carousel .carousel-inner .active .left{
  left:-33%;
}
.multi-item-carousel .carousel-inner .active .right{
  left:33%;
}
.multi-item-carousel .carousel-inner .next{
  left:33%;
}
.multi-item-carousel .carousel-inner .prev{
  left:-33%;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .multi-item-carousel .carousel-inner .item{
    transition: 500ms ease-in-out left;
    transition: 500ms ease-in-out all;
    backface-visibility: visible;
    transform: none!important;
  }
}
.multi-item-carousel .carouse-control .left{
  background-image: none;
}
.multi-item-carousel .carouse-control .right{
  background-image: none;
}



body{
  background: #333;
  color: #3d494d;
}
h1{
  color: white;
  font-size: 2.25em;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2em;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 1);
}

.splide__slide a {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-items: center;
}
.splide__slide a img{
  height: 60%;
  width: auto;
}
.splide__arrow {
  top: 60% !important;
}
.img-feder{
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.fin-wrapper-parent{
  margin-top: 1rem;
}
.fin-wrapper{
  width: 100%;
  justify-content: center;
  align-items: center;
  justify-items: center;
  align-content: center;
  display: flex;
  flex-direction: column;
}
.fin-wrapper span{
  width: 60%;
}
.fin-wrapper a {
  width: 60%;
}

@media (max-width: 500px) {
  #container-home {
    background-color: #dbecf9;
    margin: 20px;
    height: 200px;
  }

  #button-simulators {
    margin-top: 60px;
  }

}