@charset "utf-8";
/*!
 * 2014-2019 Blixsoft Technologies.
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/OSL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@blixsoft.com so we can send you a copy immediately.
 *
 * @author    Blixsoft Technologies <support@blixsoft.com>
 * @copyright 2014-2019 Blixsoft Technologies
 * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 */


/*******************************
* Global CSS
*******************************/
body {
  font-family: 'Rubik', sans-serif;
  color: #1d2a45;
}

*:focus {
  outline: none !important;
}

ul, ol {
  list-style: none;
}

b,
strong {
  font-weight: 500;
}

a {
  color: #ff5e14;
  text-decoration: none;
  background-color: transparent;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

a:hover {
  color: #1d2a45;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

h1, .h1 {
  font-size: 58px;
}

h2, .h2 {
  font-size: 47px;
}

h3, .h3 {
  font-size: 41px;
}

h4, .h4 {
  font-size: 37px;
}

h5, .h5 {
  font-size: 29px;
}

h6, .h6 {
  font-size: 23px;
}

hr {
  border-top: 1px solid rgba(3, 15, 44, 0.06);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: rgba(3, 15, 44, 0.85);
}

.table th,
.table td {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid rgba(3, 15, 44, 0.07);
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid rgba(3, 15, 44, 0.07);
}

.table tbody + tbody {
  border-top: 2px solid rgba(3, 15, 44, 0.07);
}

.table-bordered {
  border: 1px solid rgba(3, 15, 44, 0.07);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(3, 15, 44, 0.07);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(243, 243, 243, 0.8);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: #f3f3f3;
}

.form-control {
  font-family: 'Barlow Condensed', sans-serif;
  display: block;
  width: 100%;
  height: auto;
  padding: 1.5rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(3, 15, 44, 0.85);
  background-color: #f3f3f3;
  background-clip: padding-box;
  border: 1px solid #f3f3f3;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: rgba(3, 15, 44, 0.85);
  background-color: #f3f3f3;
  border-color: #f3f3f3;
  outline: 0;
  box-shadow: none;
}

.form-control::-webkit-input-placeholder {
  color: rgba(3, 15, 44, 0.5);
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: rgba(3, 15, 44, 0.5);
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: rgba(3, 15, 44, 0.5);
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: rgba(3, 15, 44, 0.5);
  opacity: 1;
}

.form-control::placeholder {
  color: rgba(3, 15, 44, 0.5);
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #f3f3f3;
  opacity: 0.65;
  cursor: not-allowed;
}

.form-group {
  margin-bottom: 1.25rem;
}

.btn {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 1.35rem 3rem;
  font-size: 17px;
  line-height: 1.5;
  border-radius: 0;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14;
}

.btn-primary:hover {
  color: #fff;
  background-color: #04112c;
  border-color: #04112c;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: none;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #04112c;
  border-color: #04112c;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: none;
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  box-shadow: none;
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  box-shadow: none;
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  box-shadow: none;
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  box-shadow: none;
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-light {
  color: rgba(29, 42, 69, 0.6);
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}

.btn-light:hover {
  color: #1d2a45;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.btn-light:focus, .btn-light.focus {
  box-shadow: none;
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-dark {
  color: #fff;
  background-color: #041332;
  border-color: #041332;
}

.btn-dark:hover {
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14;
}

.btn-dark:focus, .btn-dark.focus {
  box-shadow: none;
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #041332;
  border-color: #041332;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-primary {
  color: #ff5e14;
  border-color: #ff5e14;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: none;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #ff5e14;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: none;
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: none;
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: none;
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: none;
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: none;
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-light {
  color: rgba(29, 42, 69, 0.6);
  border-color: rgba(3, 15, 44, 0.085);
}

.btn-outline-light:hover {
  color: #1d2a45;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: none;
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: rgba(29, 42, 69, 0.6);
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #1d2a45;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-dark {
  color: #041332;
  border-color: #041332;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #041332;
  border-color: #041332;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: none;
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #041332;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #041332;
  border-color: #041332;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-link {
  font-weight: 500;
  color: #ff5e14;
  text-decoration: none;
  padding: 0;
}

.btn-link:hover {
  color: #04112c;
  text-decoration: none;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: none;
  box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.custom-select {
  font-family: 'Barlow Condensed', sans-serif;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 1.3rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(3, 15, 44, 0.85);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/20px 10px;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  border-radius: 0;
}

.custom-select:focus {
  border-color: #f3f3f3;
  outline: 0;
  box-shadow: none;
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #f3f3f3;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.3rem;
  padding-left: 2.5rem;
}

.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #ff5e14 !important;
  background-color: #ff5e14 !important;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ff5e14;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: rgb(234, 240, 243);
  border-color: rgb(234, 240, 243);
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label.barlow-condensed {
  font-size: 1.1rem;
}

.custom-control-label::before {
  position: absolute;
  top: 3px;
  left: -2.5rem;
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  pointer-events: none;
  content: "";
  background-color: #f3f3f3 !important;
  border: 0;
}

.custom-control-label::after {
  position: absolute;
  top: 3px;
  left: -2.45rem;
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  content: "";
  background: no-repeat 45% / 45% 45%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #ff5e14;
  background-color: #ff5e14;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ff5e14;
}

.nav-tabs {
  border-bottom: 1px solid rgba(3, 15, 44, 0.06);
}

.nav-tabs .nav-link {
  position: relative;
  font-size: 1.15rem;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  color: rgba(3, 15, 44, 0.6);
}

.nav-tabs .nav-link::after {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  content: '';
  background-color: #ff5e14;
  z-index: 1;
  opacity: 0;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: transparent;
  color: rgba(3, 15, 44, 0.95);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #ff5e14;
  background-color: #fff;
  border-color: transparent;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 1.5rem 1.5rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(3, 15, 44, 0.085);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card .card-header {
  margin-bottom: 0;
}

.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  font-size: 1.12rem;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item.active, .breadcrumb-item a:hover {
  color: #ff5e14;
}

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.8rem 1rem;
  margin-left: 3px;
  line-height: 1.25;
  color: rgba(3, 15, 44, 0.5);
  background-color: #fff;
  border: 2px solid #f3f3f3;
  font-size: 0.93rem;
}

.page-link:hover {
  z-index: 2;
  color: rgba(3, 15, 44, 0.7);
  text-decoration: none;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: none;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0.8rem 1.2rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.8rem 1.2rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14;
}

.page-item.disabled .page-link {
  color: rgba(3, 15, 44, 0.3);
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #f3f3f3;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.5em;
  font-size: 75%;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
}

.badge-primary {
  color: #fff;
  background-color: #ff5e14;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(3, 15, 44, 0.04);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #041332;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 0.2rem;
  outline: 0;
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1);
}

.modal-backdrop {
  background-color: #030d20;
}

.modal-backdrop.show {
  opacity: 0.6;
}

.modal-header {
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

@media screen and (max-width: 992px) {
  .modal-dialog {
    max-width: 600px;
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1200px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1010;
  display: block;
  margin: 0;
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.65rem;
  word-wrap: break-word;
  opacity: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #041332;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #041332;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #041332;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #041332;
  border-radius: 0.25rem;
}

.bg-primary {
  background-color: #ff5e14 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f3f3f3 !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #ebf0f3 !important;
}

.bg-dark {
  background-color: #041332 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #041332 !important;
}

.border {
  border: 1px solid rgba(3, 15, 44, 0.075) !important;
}

.border-top {
  border-top: 1px solid rgba(50, 65, 99, 0.075) !important;
}

.border-right {
  border-right: 1px solid rgba(3, 15, 44, 0.075) !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(3, 15, 44, 0.075) !important;
}

.border-left {
  border-left: 1px solid rgba(3, 15, 44, 0.075) !important;
}

.border-primary {
  border-color: #ff5e14 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.09) !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.text-primary {
  color: #ff5e14 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #04112c !important;
}

.text-secondary {
  color: rgba(4, 19, 49, 0.65) !important; /* #5c6476 */
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgba(4, 19, 49, 0.9) !important;
}

.text-success {
  color: #1dbe42 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.7) !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #041332 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #ff5e14 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

/*******************************
* Default CSS
*******************************/
.barlow-condensed {
  font-family: 'Barlow Condensed', sans-serif;
}

.default-font {
  font-family: 'Rubik', sans-serif;
}

.bg-industry {
  background: url('../../img/content/bg-industry.png') bottom center no-repeat;
  background-size: 100% auto;
  padding-bottom: 2rem !important;
}

.text-sm {
  font-size: 0.95rem;
}

.text-md {
  font-size: 1.1rem;
}

.text-lg {
  font-size: 2rem;
}

.barlow-condensed.text-md {
  font-size: 20px;
}

.barlow-condensed.text-md:not(.text-uppercase) {
  font-size: 21px;
}

.barlow-condensed.text-md-2 {
  font-size: 19px;
}

.box-icon {
  width: 55px;
  height: 55px;
}

.box-icon img {
  width: 45px;
}

.box-icon.w-sm {
  width: 45px;
  height: 45px;
}

.box-icon.w-sm img {
  width: 35px;
}

.box-icon.w-md img {
  width: 50px;
}

.box-icon.w-lg img {
  width: 55px;
}

.heading-separator {
  display: block;
  position: relative;
  width: 85px;
  height: 2px;
}

.heading-separator::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 2px;
  content: '';
  background-color: #ff5e14;
}

.heading-separator::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 2px;
  content: '';
  background-color: #d9d9d9;
}

.heading-separator.white::before {
  background-color: #fff;
}

.heading-separator.white::after {
  background-color: rgba(255, 255, 255, 0.85);
}

.heading-separator.w-sm {
  width: 45px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 1;
}

.transition {
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

.pointer {
  cursor: pointer;
}

.location {
  position: relative;
  padding: 8rem 0;
  z-index: 1;
  background: url('../../img/content/bg-location.jpg') bottom center #031029;
  background-size: cover;
  color: #fff;
}

.location::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  z-index: -1;
  background: rgba(14,25,53,1);
  background: -moz-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(14,25,53,1)), color-stop(28%, rgba(97,78,83,0.75)), color-stop(70%, rgba(190,157,147,0.38)), color-stop(100%, rgba(236,224,220,0.11)));
  background: -webkit-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: -o-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: -ms-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: linear-gradient(to right, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e1935', endColorstr='#ece0dc', GradientType=1 );
}

.location .heading-separator {
  width: 70px;
}

.location .heading-separator::before {
  width: 100%;
}

.location .heading-separator::after {
  display: none;
}

.location h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 700;
}

.location .heading-separator {
  width: 100px;
}

.location.bg-light {
  background-image: none;
  padding: 2rem 0;
}

.location.bg-light h1 {
  color: #1d2a45;
  font-size: 45px;
}

.location.bg-light::after {
  display: none;
}

.location.bg-light .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(4, 17, 44, 0.5);
}

.location.bg-light .breadcrumb-item a {
  color: rgba(4, 17, 44, 0.7);
}

.location.bg-light .breadcrumb-item a:hover {
  color: #ff5e14;
}

.subtitles {
  width: 650px;
}

.btn-floating-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  min-width: auto;
  display: block;
  line-height: 53px;
  padding: 0;
  right: 35px;
  bottom: -25px;
}

@media screen and (max-width: 992px) {

  .location {
    padding: 7rem 0;
  }

  .location h1 {
    font-size: 55px;
  }

  .breadcrumb {
    padding: 0.75rem 0;
  }

}

@media screen and (max-width: 576px) {

  .bg-industry {
    background-size: 350% auto;
  }

  .subtitles {
    width: 97%;
  }

}

/*******************************
* Header & Navigation
*******************************/
.top-bar {
  position: relative;
  z-index: 9;
  background-color: #041332;
}

.top-bar::before {
  position: absolute;
  width: calc(45% - 260px);
  height: 100%;
  top: 0;
  right: 0;
  content: '';
  background-color: #ff5e14;
  z-index: -1;
}

.top-bar ul li {
  font-size: 14px;
  padding: 1rem 0.5rem;
  /* font-weight: 600; */
}

.top-bar ul li, .top-bar ul li a {
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

.top-bar ul li a:hover {
  color: #ff5e14;
}

.top-bar ul li i {
  color: #ff5e14;
  font-size: 1rem;
}

.account-top {
  padding: 0 !important;
}

.account-top a {
  /* font-weight: 500; */
  padding: 1rem 0.5rem;
}

.account-top a > i {
  color: rgb(255, 255, 255) !important;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

.account-top a, .account-top a:hover {
  color: rgba(255,2550, 255, 1) !important;
}

.account-top ul.dropdown-menu {
  min-width: 14rem;
  border: 0;
  box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  background-color: #fff;
}

.account-top ul.dropdown-menu li {
  padding: 0 !important;
}

.account-top ul.dropdown-menu li a.dropdown-item {
  color: rgba(4, 17, 44, 0.65) !important;
  padding: 0.65rem 1rem;
  font-weight: 400;
}

.account-top ul.dropdown-menu li i {
  color: rgba(4, 17, 44, 0.65) !important;
}

.account-top ul.dropdown-menu li a.dropdown-item:hover, .account-top ul.dropdown-menu li a.dropdown-item:focus {
  color: #ff5e14 !important;
  background-color: transparent !important;
}

.account-top ul.dropdown-menu li a.dropdown-item:hover i, .account-top ul.dropdown-menu li a.dropdown-item:focus i {
  color: #ff5e14 !important;
}

header {
  width: 100%;
  position: relative;
}

.navigation .navbar-nav {
  margin-left: 1.5rem;
  margin-right: 1rem;
}

.navbar-brand {
  width: 200px;
  height: 70px;
  background: url('https://dev.blixsoft.com/tornillos/img/brand/rodamex.svg') left center no-repeat;
}

.navigation.navbar-expand-lg .nav-link {
  position: relative;
  font-size: 18px;
  padding: 0;
  color: rgba(4, 17, 44, 0.9);
  font-weight: 500 !important;
}

.navigation.navbar-expand-lg .nav-link:hover {
  color: #ff5e14;
}

.navigation .nav-item.active a.nav-link {
  color: #ff5e14;
}

.navigation .nav-item.active ul li a.nav-link {
  color: rgba(4, 17, 44, 0.9);
}

.navigation ul li.nav-item {
  padding: 3rem 1rem;
}

.navigation ul li:hover a.nav-link {
  color: #ff5e14;
}

.navigation ul li span.btn-subnav {
  position: absolute;
  display: none;
  height: 100%;
  top: 0;
  right: 0;
  padding: 1.1rem 1rem;
  font-size: 1rem;
  z-index: 1;
  cursor: pointer;
}

.navigation ul li > ul, .navigation ul li > div.subnav-lg {
  position: absolute;
  width: 16rem;
  top: 100%;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  background-color: #fff;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.navigation .navbar-collapse ul li:hover > ul, .navigation .navbar-collapse ul li:hover > ul.subnav-lg {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.navigation ul li ul.divider-top {
  border-top: 2px solid #ff5e14;
}

.navigation ul li ul.subnav-sm {
  width: 15rem;
  padding: 0.8rem 1rem;
}

.navigation ul li ul.subnav-sm li {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(3, 15, 44, 0.07);
}

.navigation ul li ul.subnav-sm li:last-child {
  border-bottom: none;
}

.navigation ul li ul.subnav-sm li a.nav-link {
  color: rgba(4, 17, 44, 0.9);
  padding: 0.65rem 1rem !important;
  font-size: 17px;
  font-weight: 500 !important;
}

.navigation ul li ul.subnav-sm li a.nav-link:hover, .navigation ul li ul.subnav-sm li a.nav-link:focus {
  color: #ff5e14 !important;
  background-color: #fff;
}

.navigation ul li ul.subnav-sm li ul {
  width: 15rem;
  right: -16rem;
  top: 0;
  padding: 0.8rem 1rem;
}

.navigation ul li ul.subnav-sm li ul li a.nav-link {
  color: rgba(4, 17, 44, 0.9);
  padding: 0.65rem 1rem !important;
  font-size: 17px;
  font-weight: 500 !important;
}

.shop-options {
  margin-left: 1rem;
}

.shop-options ul li {
  padding: 3rem 0;
}

.shop-options ul li.nav-toggler {
  display: none;
  padding: 0 1.2rem;
}

.shop-options ul li.nav-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(4, 17, 44, 0.65)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.shop-options ul li a {
  color: rgba(4, 17, 44, 0.65);
}

.shop-options ul li a.btn-search:hover, .shop-options ul li a.btn-search:focus {
  color: #ff5e14 !important;
}

.shop-options li.divider {
  margin-right: 0.5rem;
  padding: 1.25rem 0;
  width: 1px;
  background-color: rgba(4, 17, 44, 0.085);
}

.btn-search, .btn-cart {
  width: 45px;
  padding: 0 1rem;
}

.btn-search i {
  font-size: 1.1rem; 
}

.btn-cart i {
 font-size: 1.3rem;
}

.btn-cart .badge {
  position: absolute;
  border-radius: 3rem;
  padding: 0;
  width: 23px;
  height: 23px;
  line-height: 23px;
  top: -10px;
  right: -4px;
  text-align: center;
  font-size: 0.73rem;
  font-weight: 400;
}

.box-cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 13, 32, 0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
          transition: 0.4s;
}

.box-cart {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 370px;
  height: 100%;
  padding: 2rem 1.5rem 130px 1.5rem;
  right: -400px;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
          transition: 0.4s;
}

.box-cart .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}

.box-cart .h5 {
  font-size: 23px;
}

.empty-cart {
  padding: 9rem 1rem;
  color: rgba(4, 19, 49, 0.6);
}

.empty-cart .icon {
  font-size: 3.5rem;
  color: rgba(4, 19, 49, 0.25);
}

.empty-cart p {
  font-size: 0.93rem;
  color: rgba(4, 19, 49, 0.4);
}

.box-cart .box-cart-button {
  background-color: #fff;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(3, 15, 44, 0.07);
  padding: 1rem;
}

.box-cart.show {
  visibility: visible;
  right: 0;
}

.box-cart-backdrop.show {
  opacity: 1;
  visibility: visible;
}

div.box-search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1.3rem 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

div.show-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.box-search .btn {
  padding: 1.35rem 1.5rem;
}

.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.06);
  z-index: 1020;
}

.nav-fixed .navigation ul li.nav-item {
  padding: 2rem 1rem;
}

.nav-fixed .navigation ul li ul.subnav-sm li {
  padding: 0;
}

.nav-fixed .navigation ul li ul.subnav-lg li {
  padding: 0;
  display: inline-block;
}

.nav-fixed .shop-options li.divider {
  padding: 1.25rem 0;
}

.nav-fixed .shop-options ul li {
  padding: 2rem 0;
}

@media screen and (min-width: 1500px) {

  .top-bar::before {
    width: 35%;
  }

}

@media screen and (max-width: 992px) {

  .top-bar .top-info li:nth-child(3) {
    display: none !important;
  }

  .top-bar::before {
    width: 40%;
  }

  header {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  header .navbar {
    position: static;
  }

  .navigation .navbar-nav {
    margin-right: 0;
  }

  .navigation ul li.nav-item {
    padding: 1rem 0.5rem;
  }

  .navigation .navbar-collapse ul li:hover > ul, .navigation .navbar-collapse ul li:hover > ul.subnav-lg {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .navigation ul li > ul.subnav-sm, .navigation ul li > ul.subnav-sm li ul {
    display: none;
    position: relative;
    width: 100%;
    top: 5px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    box-shadow: none;
    border-top: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transition: max-height 1s;
    -moz-transition: max-height 1s;
    -ms-transition: max-height 1s;
    -o-transition: max-height 1s;
    transition: max-height 1s;
  }
  
  .navigation ul li > ul.subnav-sm li ul {
    position: relative;
    right: auto;
  }

  .navigation ul li ul.subnav-sm li ul > li a.nav-link {
    padding: 0.65rem 2rem !important;
  }

  .navigation ul li span.btn-subnav {
    display: block;
  }

  .shop-options {
    position: absolute;
    top: 0;
    right: 20px;
  }

  .shop-options ul li.nav-toggler {
    display: inline-block;
    vertical-align: middle;
  }

  .shop-options ul li {
    padding: 2.25rem 0;
  }
  
  .shop-options ul li.nav-toggler {
    padding: 0 1.2rem;
  }

  .shop-options li.divider {
    margin-right: 0.5rem;
  }

  .nav-fixed {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .nav-fixed .navigation ul li.nav-item {
    padding: 1rem 0.5rem;
  }

}

@media screen and (max-width: 576px) {
  .top-bar {
    display: none;
  }

  .top-bar .col-lg-7 {
    display: none;
  }

  .top-bar::before {
    width: 70%;
  }

  header {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  header.pb-4 {
    padding-bottom: 0 !important;
  }

  header .col-lg-8 {
    display: none !important;
  }

  .navigation .navbar-brand {
    width: 160px;
    height: 70px;
  }

  .nav-floating {
    position: relative;
    bottom: auto;
    background-color: #0a1855;
  }

  .shop-options {
    right: 15px;
  }

  .btn-search {
    width: 40px;
    padding: 0 1rem;
  }

  .shop-options ul li {
    padding: 2.1rem 0;
  }

  .shop-options li.divider {
    margin-right: 0rem;
  }

  .shop-options ul li.nav-toggler {
    padding: 0 0.8rem;
  }

  .navigation ul li ul.subnav-search {
    width: 24rem;
    right: -14rem;
    padding: 1rem;
    z-index: 999;
  }

  .nav-fixed {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .box-search .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .box-cart {
    width: 100%;
    right: -100%;
  }

  .empty-cart {
    padding: 7rem 0;
  }

}

/*******************************
* Home Page
*******************************/

/* Slider */
.slider{ 
  position: relative;
  /* background-color: #0c1b46; */
  background-color: #f5f5f5;
  background-size: cover;
}

.item-slider {
  position: relative;
  z-index: 1;
  float: left;
  width: 100%;
  height: auto;
  padding: 10rem 0;
  background-color: #0c1b46;
}

.item-slider::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  /* background-color: rgba(16, 33, 82, 0.95); */
  background: rgb(16, 33, 82);
  background: -moz-linear-gradient(90deg, rgba(16, 33, 82, 0.97) 40%, rgba(16, 33, 82, 0.85) 100%);
  background: -webkit-linear-gradient(90deg, rgba(16, 33, 82, 0.97) 40%, rgba(16, 33, 82, 0.85) 100%);
  background: linear-gradient(90deg, rgba(16, 33, 82, 0.97) 40%, rgba(16, 33, 82, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b183d",endColorstr="#ffffff",GradientType=1);
  z-index: -1;
}

.item-slider h1, .item-slider h2 {
  font-size: 3.5rem;
  color: #dee3e7;
}

.item-slider p.border-left {
  border-color: #ff5e14 !important;
}

.slider-btn-back, .slider-btn-next {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  min-width: auto;
  display: block;
  line-height: 42px;
  padding: 0;
  z-index: 9;
  font-size: 1.1rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.slider-btn-back {
  left: 15px;
  -moz-transform: translateX(-15px);
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}

.slider-btn-next {
  right: 15px;
  -moz-transform: translateX(15px);
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

.slider:hover .slider-btn-back {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slider:hover .slider-btn-next {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slider-item1 {
  background: url('../../img/slider/2802.jpg') top center no-repeat #091433;
  background-attachment: fixed !important;
  background-size: cover;
}

.slider-item2 {
  background: url('../../img/slider/1asxz.jpg') center center no-repeat fixed #091433;
  background-size: cover;
}

.slider-item3 {
  background: url('../../img/slider/32213.jpg') bottom center no-repeat fixed #091433;
  background-size: cover;
}

/* Features */
.shop-features .h6 {
  font-size: 17px;
}

.shop-features img {
  width: 45px;
}

/* Categories */
.list-categories {
  padding: 2rem 0.95rem;
  text-align: center;
}

.list-categories .h6 {
  font-size: 19px;
}

.list-categories:hover .text-dark {
  color: #ff5e14 !important;
}

.btn-back-categories, .btn-next-categories {
  position: absolute;
  width: 42px;
  height: 42px;
  text-align: center;
  top: 50%;
  /* background-color: #fff;
  color: rgba(4, 19, 50, 0.5);
  border-color: rgba(4, 19, 50, 0.3); */
  margin-top: -21px;
  z-index: 9;
  padding: 0;
  line-height: 40px;
  font-size: 1rem;
  min-width: auto;
}

.btn-slider-categories:hover {
  background-color: #ff5e14;
  color: #fff;
}

.btn-back-categories {
  left: -20px;
}

.btn-next-categories {
  right: -20px;
}

@media screen and (max-width: 576px) {
  .btn-back-categories {
    left: -5px;
  }
  
  .btn-next-categories {
    right: -5px;
  }
}

/* Products */


/* Join */
.join {
  position: relative;
  z-index: 1;
  background: url('../../img/content/bg-join.jpg') left center no-repeat #04112c;
  background-size: cover;
  padding: 5rem 0;
}

.join::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(4, 17, 44, 0.9);
  z-index: -1;
}

.join::before {
  display: none;
  position: absolute;
  top: -2%;
  right: 0;
  width: 44%;
  height: 104%;
  content: '';
  background-color: #ff5e14;
  z-index: -1;
}

.join .title {
  width: 48%;
  position: relative;
  display: inline-block;
  padding-right: 3rem;
  vertical-align: middle;
}

.join .title::after {
  position: absolute;
  width: 1px;
  height: 80%;
  top: 10%;
  right: 2.5rem;
  content: '';
  background-color: rgba(255, 255, 255, 0.1);
}

.join .section-title-v p {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  margin-bottom: 0;
}

.join hr.w-100 {
  border-color: rgba(255, 255, 255, 0.1);
}

.join-box {
  padding: 1rem;
  /* box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1); */
}

.join img {
  width: 40px;
}

.join .form-control {
  border-color: #fff;
  background-color: #fff;
  color: #04112c; /* rgba(255, 255, 255, 0.8) */
}

.join .form-control::-webkit-input-placeholder {
  color: rgba(4, 17, 44, 0.75);
  opacity: 0.7;
}

.join .form-control::-moz-placeholder {
  color: rgba(4, 17, 44, 0.75);
  opacity: 0.7;
}

.join .form-control:-ms-input-placeholder {
  color: rgba(4, 17, 44, 0.75);
  opacity: 0.7;
}

.join .form-control::-ms-input-placeholder {
  color: rgba(4, 17, 44, 0.75);
  opacity: 0.7;
}

.join .form-control::placeholder {
  color: rgba(4, 17, 44, 0.75);
  opacity: 0.7;
}

.join .btn-dark:hover, .join .btn-dark:active {
  background-color: #fff !important;
  color: rgba(4, 17, 44, 0.9) !important;
  font-weight: 500;
}

@media screen and (max-width: 576px) {
  .join {
    background-image: none;
    background-position: bottom center;
    background-size: 100% 53%;
  }
  
  .join::after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50% !important;
  }
}

@media screen and (max-width: 992px) {
  .join {
    background-position: bottom center;
    background-size: 100% 53%;
    padding: 3rem 0;
  }

  .join::after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 53%;
  }

  .join-box {
    padding: 0;
  }
}

/* Offers */
.box-offer {
  overflow: hidden;
}

.box-offer:hover img {
  transform: scale(1.05);
}

@media screen and (max-width: 576px) {
  .box-offer {
    margin-bottom: 1rem;
  }
}


/*******************************
* About Page
*******************************/
.img-about {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100% !important;
  height: auto;
}

.img-about::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  background-color: rgba(4, 17, 44, 0.2);
  z-index: 1;
}

.about-history {
  z-index: 1;
}

.about-history::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #04112c;
  z-index: -1;
}

.about-values .box-overlay {
  position: absolute;
  background-color: #ff5e14;
  padding: 4.5rem 4rem;
  top: -295px;
}

.about-values .box-overlay .text-light {
  color: rgba(255, 255, 255, 0.9) !important;
}

.why-us {
  position: relative;
}

.why-us::after {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(3, 15, 44, 0.05);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 3.7rem;
  line-height: 0;
}

.item1::after {
  content: '01';
}

.item2::after {
  content: '02';
}

.item3::after {
  content: '03';
}

.item4::after {
  content: '04';
}

@media screen and (max-width: 992px) {

  .get-in-touch {
    text-align: center;
  }

  .about-history {
    padding-bottom: 0 !important;
  }

  .about-history .container.mb-4 {
    margin-bottom: 0 !important;
  }

  .about-values {
    overflow: hidden;
    padding-bottom: 1.5rem;
  }

  .about-values .box-overlay {
    position: relative;
    padding: 2.5rem 0;
    bottom: -10px;
    top: auto;
    z-index: 1;
  }

  .about-values .box-overlay::before {
    position: absolute;
    bottom: -10%;
    left: -25%;
    width: 150%;
    height: 115%;
    z-index: -1;
    content: '';
    background-color: #ff5e14;
  }
}

/*******************************
* Manufacturing
*******************************/
.manufacturing-benefits {
  position: relative;
  z-index: 1;
}

.manufacturing-benefits::after {
  position: absolute;
  top: -5%;
  left: 0;
  width: 47%;
  height: 110%;
  z-index: -1;
  content: '';
  background: url('../../img/content/manufacturing.jpg') left center no-repeat;
  background-size: cover;
}

.manufacturing-benefits::before {
  position: absolute;
  top: -5%;
  left: 0;
  width: 47%;
  height: 110%;
  z-index: 1;
  content: '';
  /* background: rgb(3,16,41);
  background: -moz-linear-gradient(90deg, rgba(3,16,41,0.5) 0%, rgba(4,19,50,0.15) 55%, rgba(3,16,41,0.8) 100%);
  background: -webkit-linear-gradient(90deg, rgba(3,16,41,0.5) 0%, rgba(4,19,50,0.15) 55%, rgba(3,16,41,0.8) 100%);
  background: linear-gradient(90deg, rgba(3,16,41,0.5) 0%, rgba(4,19,50,0.15) 55%, rgba(3,16,41,0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#031029",endColorstr="#031029",GradientType=1); */
  background: rgba(14,25,53,1);
  background: -moz-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(14,25,53,1)), color-stop(28%, rgba(97,78,83,0.75)), color-stop(70%, rgba(190,157,147,0.38)), color-stop(100%, rgba(236,224,220,0.11)));
  background: -webkit-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: -o-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: -ms-linear-gradient(left, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  background: linear-gradient(to right, rgba(14,25,53,1) 0%, rgba(97,78,83,0.75) 28%, rgba(190,157,147,0.38) 70%, rgba(236,224,220,0.11) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e1935', endColorstr='#ece0dc', GradientType=1 );
}

.manufacturing-benefits .container {
  padding: 3.5rem 0;
}

.manufacturing-item {
  position: relative;
  padding: 4rem;
}

.manufacturing-item .h6 {
  font-size: 23px;
}

.manufacturing-item p {
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
}

.manufacturing .picture {
  width: 100%;
}

.manufacturing .list-services ul li a {
  padding: 1.4rem;
  background-color: #f3f3f3;
  color: rgba(4, 17, 44, 0.85);
  font-size: 1.15rem;
}

.manufacturing .list-services ul li a:hover, .manufacturing .list-services ul li.active a {
  background-color: #ff5e14;
  color: #fff;
}

.manufacturing .need-help {
  position: relative;
  padding: 2.5rem;
  background: url('../../img/content/bg-need-help.jpg') center center no-repeat #041332;
  background-size: cover;
  z-index: 1;
}

.manufacturing .need-help::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: rgb(3,16,41);
  background: -moz-linear-gradient(90deg, rgba(4,19,50,1) 0%, rgba(4,19,50,0.65) 50%, rgba(4,19,50,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(4,19,50,1) 0%, rgba(4,19,50,0.65) 50%, rgba(4,19,50,1) 100%);
  background: linear-gradient(90deg, rgba(4,19,50,1) 0%, rgba(4,19,50,0.65) 50%, rgba(4,19,50,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#031029",endColorstr="#031029",GradientType=1);
  z-index: -1;
}

.manufacturing .need-help p {
  font-size: 0.9rem;
}

.manufacturing .need-help a {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.95);
}

.manufacturing .need-help a:hover {
  color: #ff5e14;
}

.manufacturing .get-quote {
  padding: 2.5rem;
}

.manufacturing .get-quote p {
  font-size: 0.9rem;
}

.manufacturing .get-quote .form-control, .manufacturing .get-quote .form-control:focus {
  background-color: #fff;
}

.manufacturing h3 {
  font-size: 34px;
}

.manufacturing .picture img {
  width: 100%;
}

.manufacturing-get-guote .col-lg-4 {
  text-align: right !important;
}

.manufacturing-faqs .btn-link {
  color: #04112c !important;
}

.manufacturing-faqs .btn-link:hover, .manufacturing-faqs .btn-link:focus {
  color: #ff5e14 !important;
}

@media screen and (max-width: 992px) {

  .manufacturing-item {
    padding: 1rem 0.5rem;
  }

  .manufacturing-benefits {
    padding: 3.5rem 0 500px;
  }

  .manufacturing-benefits .container {
    padding: 0 15px;
  }

  .manufacturing-benefits::after {
    top: auto;
    left: 0;
    bottom: -3%;
    width: 97%;
    height: 500px;
  }
  
  .manufacturing-benefits::before {
    top: auto;
    left: 0;
    bottom: -3%;
    width: 97%;
    height: 500px;
  }

  .manufacturing-get-guote .col-lg-4 {
    text-align: left !important;
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 576px) {
  .manufacturing .need-help, .manufacturing .get-quote {
    padding: 1.5rem;
  }

  .manufacturing-item {
    padding: 1rem;
  }

  .manufacturing-benefits {
    padding: 3.5rem 0 300px;
  }

  .manufacturing-benefits::after {
    top: auto;
    left: 0;
    bottom: -3%;
    width: 97%;
    height: 300px;
  }
  
  .manufacturing-benefits::before {
    top: auto;
    left: 0;
    bottom: -3%;
    width: 97%;
    height: 300px;
  }

}

/*******************************
* Categories
*******************************/
.categories {
  position: relative;
  padding: 2rem 0.95rem;
}

.categories::before {
  display: none;
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  content: '';
  background-color: #ff5e14;
  transition: 0.3s;
}

.categories a.h6 {
  font-size: 21px;
}

.categories:hover {
  border-color: #ff5e14 !important;
}

.categories:hover .text-dark {
  color: #ff5e14 !important;
}

/* .categories:hover a.h6 {
  color: #ff5e14 !important;
} */

.categories:hover::before {
  width: 100%
}


/*******************************
* Products
*******************************/
.aside-products {
  border-right: 1px solid #f3f3f3;
}

.aside-products .block-title {
  position: relative;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 600;
}

.aside-products .block-title span {
  position: absolute;
  display: none;
  height: 100%;
  top: 0;
  right: 0;
  padding: 0.2rem 1rem;
  font-size: 1rem;
  z-index: 1;
  cursor: pointer;
}

.aside-subcategories li {
  font-size: 0.925rem;
}

/* .aside-content-filters {

} */



.aside-products .block-content {
  padding: 1.2rem 0;
  overflow: hidden;
}

.aside-products .collapse:not(.show) {
  display: block;
}

.filter-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.07rem;
}

.aside-content-filters ul {
  margin-bottom: 1.5rem;
}

.aside-content-filters ul li {
  margin-bottom: 0.5rem;
}

.aside-content-filters ul li:last-child {
  margin-bottom: 0;
}

.aside-content-filters .custom-control-label::before {
  border: 1px solid rgba(4, 19, 50, 0.075);
}

.aside-products .product-horizontal-image {
  width: 75px;
}

.aside-products .product-horizontal-image img {
  width: 100%;
}

.aside-products .product-horizontal-content {
  width: calc(100% - 90px);
}

.aside-products .product-horizontal span.product-mark {
  font-size: 0.72rem;
  font-weight: 500;
}

.aside-products .product-horizontal .product-title {
  font-size: 1.2rem;
}

.aside-products .product-horizontal .product-price {
  font-family: 'Barlow Condensed', sans-serif;
  padding: 0.5rem 0;
  color: #ff5e14;
  font-size: 1.2rem;
  line-height: 1.2;
}

.aside-products .product-horizontal .product-price b {
  color: rgba(3, 15, 44, 0.5);
  font-size: 87%;
  text-decoration: line-through;
}

.aside-images-info img {
  width: 98%;
}

.category-banner {
  text-align: center;
}

/* .category-banner h1 {
  
} */

.box-filter {
  display: none;
}

.box-filter .btn {
  text-transform: none;
  font-weight: 400;
  font-size: 1.1rem;
  padding: 1rem 1.2rem;
}

.view-type ul li:first-child {
  margin-right: 2px;
}

.view-type ul li a {
  color: rgba(4, 17, 44, 0.4);
  padding: 0.5rem 0.4rem;
}

.view-type ul li a:hover {
  color: rgba(4, 17, 44, 0.8);
}

.view-type ul li.active a {
  color: #ff5e14;
}

.view-type ul li i.far {
  font-size: 1.4rem;
}

.view-type .custom-select {
  padding: 1rem 1.5rem !important;
}

.products-view-options .custom-select {
  padding: 1rem 1.2rem;
}

.list-mode .col-lg-4  {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.product-box {
  position: relative;
  overflow: hidden;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

.product-box:hover {
  height: 110%;
  z-index: 9;
}

.product-inner-box {
  position: relative;
  overflow: hidden;
}

.grid-mode .badge.product-offer-ribbon, .grid-mode .badge.product-stock-ribbon {
  position: absolute;
  padding: 0.5rem 0.8rem;
  font-size: 0.7rem;
  color: #fff;
  z-index: 2;
  top: 10px;
  left: 10px;
  border-radius: 0;
  font-weight: 500;
}

.grid-mode .product-inner-icons {
  width: 100%;
  height: 46px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -moz-transition: 0.35s;
  -webkit-transition: 0.35s;
          transition: 0.35s;
}

.grid-mode .product-inner-icons a.btn {
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 100%;
  background-color: #fff;
  color: rgba(3, 15, 44, 0.65);
  font-size: 1.1rem;
}

.grid-mode .product-inner-icons a.btn:hover {
  background-color: #ff5e14;
  color: #fff;
}

.grid-mode .product-inner-icons i.fa-shopping-basket {
  font-size: 1.25rem;
}

.grid-mode .product-inner-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.grid-mode .product-inner-image::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(4, 19, 49, 0.5);
  opacity: 0;
  z-index: 1;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

.grid-mode .product-inner-image img {
  width: 280px;
  height: auto;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

.grid-mode .product-content {
  text-align: center;
  padding: 1rem 0.5rem;
}

.grid-mode .product-content .product-title {
  font-size: 21px;
  padding: 0.7rem 0;
  line-height: 1.2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.grid-mode .product-content .product-summary {
  display: none;
}

.grid-mode .product-content .product-price {
  font-family: 'Barlow Condensed', sans-serif;
  padding: 0.5rem;
  color: #ff5e14;
  font-size: 1.3rem;
  line-height: 1.2;
  min-height: 45px;
}

.grid-mode .product-content .product-price b {
  color: rgba(3, 15, 44, 0.5);
  font-size: 87%;
  text-decoration: line-through;
}

.grid-mode .product-box:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
}

.grid-mode .product-box:hover .product-inner-image::before {
  opacity: 1;
  z-index: 1;
}

.grid-mode .product-box:hover .product-inner-icons {
  bottom: 25px;
  opacity: 1;
  visibility: visible;
}

.list-mode .product-box {
  position: relative;
  overflow: hidden;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

.list-mode .product-inner-box {
  display: inline-block;
  width: 300px;
  vertical-align: middle;
  overflow: visible;
}

.list-mode .badge.product-offer-ribbon, .list-mode .badge.product-stock-ribbon {
  position: absolute;
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: 500;
  z-index: 2;
  font-size: 0.7rem;
  border-radius: 0;
  top: 10px;
  left: 10px;
}

.list-mode .product-inner-icons {
  width: auto;
  height: 46px;
  position: absolute;
  right: -185%;
  bottom: 20px;
  z-index: 2;
  text-align: right;
}

.list-mode .product-inner-icons a.btn {
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 44px;
  border-radius: 100%;
  background-color: rgba(3, 15, 44, 0.05);
  color: rgba(3, 15, 44, 0.7);
  font-size: 1.1rem;
}

.list-mode .product-inner-icons a.btn:hover {
  background-color: #ff5e14;
  color: #fff;
}

.list-mode .product-inner-icons i.fa-shopping-basket {
  font-size: 1.25rem;
}

.list-mode .product-inner-image {
  width: 100%;
  position: relative;
  height: auto;
  overflow: hidden;
}

.list-mode .product-inner-image img {
  width: 100%;
  height: auto;
}

.list-mode .product-content {
  display: inline-block;
  vertical-align: top;
  padding: 1rem 1rem 5rem 1rem;
  width: calc(100% - 310px);
  height: auto;
  min-height: 300px;
}

.list-mode .product-content .product-title {
  font-size: 23px;
  padding: 0.9rem 1rem 0.9rem 0;
}

.list-mode .product-content .product-summary {
  font-size: 0.93rem;
}

.list-mode .product-content .product-price {
  font-family: 'Barlow Condensed', sans-serif;
  padding: 0 1rem 1rem 0;
  color: #ff5e14;
  font-size: 1.4rem;
  line-height: 1.2;
}

.list-mode .product-content .product-price b {
  color: rgba(3, 15, 44, 0.5);
  font-size: 87%;
  text-decoration: line-through;
}

.list-mode .product-box:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
}

.product-content-picture {
  width: 100%;
  border: 2px solid #f3f3f3;
}

.product-content-picture img {
  width: 100%;
  height: auto;
}

/* .product-content-thumbnails {
  
} */

.product-thumbnail {
  display: inline-block;
  width: 105px;
  margin: 0 0.4rem;
  border: 2px solid #f3f3f3;
}

.product-thumbnail img {
  width: 100%;
}

.product-thumbnail:hover {
  border-color: rgba(108, 117, 125, 0.2);
}

.product-thumbnail.active {
  border-color: #ff5e14;
}

.btn-gallery {
  position: absolute;
  width: 15px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  color: rgba(3, 15, 44, 0.5);
  top: 50%;
  margin-top: -20px;
  z-index: 1;
  line-height: 40px;
  font-size: 1.1rem;
}

.btn-gallery:hover {
  color: rgba(3, 15, 44, 0.75);
}

.btn-back-gallery, .btn-modal-back-gallery {
  left: -15px;
}

.btn-next-gallery, .btn-modal-next-gallery {
  right: -15px;
}

.product-price span.price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  color: #ff5e14;
  font-weight: 500;
}

.product-price span.text-secondary {
  font-size: 0.93rem;
}

.product-offer-price {
  color: rgba(3, 15, 44, 0.8);
}

.product-offer-price span.regular-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  color: rgba(3, 15, 44, 0.5);
  text-decoration: line-through;
  font-weight: 500;
}

.product-offer-price span.offer-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  color: #ff5e14;
  font-weight: 500;
}

.product-offer-price span.badge {
  vertical-align: middle;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.product-offer-price span.text-secondary {
  font-size: 0.9rem;
}

.product-summary {
  font-size: 0.95rem;
}

.product-summary img.product-mark {
  width: 120px;
}

/* .stock {
  font-size: 0.89rem;
}

.stock i {
  font-size: 1rem;
} */

.product-cart-options .form-control {
  padding: 1.35rem 0.5rem;
}

.product-cart-options .btn-light {
  padding: 1.35rem 1rem;
}

.group-quantity .btn-subtract-num, .group-quantity .btn-subtract-num:focus {
  border-right: 1px solid #fff !important;
}

.group-quantity .btn-add-num, .group-quantity .btn-add-num:focus {
  border-left: 1px solid #fff !important;
}

.product-cart-options .btn-light i {
  font-size: 0.9rem;
}

.product-cart-options .btn-dark {
  padding: 1.35rem 1.4rem;
}

.product-cart-options .btn-dark i {
  font-size: 1.2rem;
}

.product-cart-options .btn.product-cart-whishlist {
  background-color: #fff !important;
  border-color: #fff !important;
  color: rgba(4, 19, 50, 0.55);
}

.product-cart-options .btn.product-cart-whishlist:hover, .product-cart-options .btn.product-cart-whishlist:focus {
  background-color: #fff !important;
  border-color: #fff !important;
  color: rgba(4, 19, 50, 0.9);
}

.product-cart-options .btn.product-cart-whishlist i {
  font-size: 1.1rem;
}

.product-cart-options .btn.product-cart-whishlist.active {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #ff5e14 !important;
}

/* .product-cart-options .btn.product-cart-whishlist span {
  display: none;
} */

.product-cart-options .stock-alert {
  font-size: 0.95rem;
}

.product-social-share ul li a {
  width: 45px;
  height: 45px;
  line-height: 47px;
  color: rgba(3, 15, 44, 0.5);
}

.product-social-share ul li i {
  font-size: 1rem;
}

.product-social-share a.facebook:hover {
  background-color: #38548f !important;
  color: #fff;
}

.product-social-share a.twitter:hover {
  background-color: #2daae1 !important;
  color: #fff;
}

.product-social-share a.pinterest:hover {
  background-color: #cb2024 !important;
  color: #fff;
}

.product-legal-notices li.list-group-item {
  padding: 0.8rem 1.25rem 0.8rem 3.5rem;
  font-size: 0.95rem;
}

.product-legal-notices i {
  position: absolute;
  top: 17px;
  left: 1rem;
  font-size: 1.1rem;
}

.table-product-specifications tbody tr td:nth-child(1) {
  width: 20%;
  font-size: 17px;
}

#productDescription, .table-product-specifications tbody tr td:nth-child(2) {
  font-size: 0.9rem;
}

@media screen and (max-width: 992px) {

  .aside-products {
    padding-top: 2rem;
    border-right: none;
    border-top: 1px solid #f3f3f3;
  }
  
  .aside-products .block-title span {
    display: block;
  }

  .aside-products .collapse:not(.show) {
    display: none;
  }

  .box-filter {
    display: inline-block;
  }

  .aside-products .product-horizontal {
    width: 49%;
    display: inline-block;
  }

  .list-mode .product-inner-box {
    position: static;
  }

  .list-mode .product-inner-icons {
    right: 20px;
  }

}

@media screen and (max-width: 576px) {

  .products-view-options .box-order {
    width: 55%;
  }

  .products-view-options .box-filter {
    width: 45%;
  }

  .aside-products .product-horizontal {
    width: 100%;
    display: block;
  }

  .group-quantity {
    margin-bottom: 1rem;
  }

  .products-list .product {
    padding: 0 2rem;
  }

  .list-mode .product-inner-box {
    display: block;
    position: static;
    width: 100%;
    margin: auto;
  }

  .list-mode .product-inner-icons {
    right: 20px;
  }

  .list-mode .product-content {
    padding: 0 1rem 5rem 1rem;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .product-cart-options .btn.product-cart-whishlist span {
    display: inline-block;
  }

  .product-thumbnail {
    width: 100px;
  }

  .btn-back-gallery, .btn-modal-back-gallery {
    left: -15px;
  }
  
  .btn-next-gallery, .btn-modal-next-gallery {
    right: -15px;
  }

}

/*******************************
* Branch Offices
*******************************/
.branch {
  padding: 3rem 3rem;
}

.branch h3 {
  font-size: 41px;
}

.branch .address {
  font-size: 1.6rem;
}

.branch .email {
  font-size: 2rem;
}

.branch .phone {
  font-size: 2.3rem;
}

.branch .work-hours {
  font-size: 1.6rem;
}

@media screen and (max-width: 992px) {

  .branch {
    padding: 2rem 1rem;
  }

}

@media screen and (max-width: 576px) {
  
  .branch {
    padding: 2rem 1rem;
  }
  
}

/*******************************
* Contact Page
*******************************/
.contact .h6 {
  font-size: 21px;
}

.contact-info {
  min-height: 210px;
}

@media screen and (max-width: 576px) {
  .contact-info {
    min-height: auto;
  }


}

/*******************************
* Cart
*******************************/

.list-cart img {
  width: 80px;
}

.list-cart tr:nth-child(1) td, .cart-details tr:nth-child(1) td {
  border-top: 0;
}

.list-cart tr td, .cart-details tr td {
  vertical-align: middle;
}

.list-cart tr td:nth-child(1) {
  width: 15%;
}

.list-cart tr td:nth-child(2) {
  width: 35%;
}

.list-cart tr td:nth-child(3) {
  width: 10%;
}

.list-cart tr td:nth-child(4) {
  width: 27%;
}

.list-cart .group-quantity {
  width: 180px !important;
}

.list-cart .product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
}

.list-cart .product-code {
  font-weight: 500;
  font-size: 0.88rem;
}

.list-cart .price-cart {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.list-cart .price-cart-offer {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.07rem;
  text-decoration: line-through;
  font-weight: 500;
}

.list-cart i.fa-trash {
  font-size: 1.1rem;
}

.list-cart .form-control {
  padding: 1rem 0.5rem;
  max-width: 4rem;
}

.list-cart .btn-light {
  padding: 1rem;
  font-size: 0.9rem;
}

.cart-details {
  font-size: 0.97rem;
}

.cart-details .subtotal, .cart-details .iva, .cart-details .discount, .cart-details .shipping, .cart-details .total {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
}

.cart-details .subtotal, .cart-details .iva, .cart-details .discount, .cart-details .shipping {
  font-size: 1.15rem;
}

.cart-details .total {
  font-size: 1.35rem;
}

/*******************************
* Checkout
*******************************/
.checkout-page .top-bar ul li a {
  color: rgba(4, 17, 44, 0.7) !important;
}

.checkout-page .top-bar ul li i {
  color: rgba(4, 17, 44, 0.7) !important;
}

.checkout-page .top-bar ul li a:hover {
  color: #ff5e14 !important;
}

.checkout-page .top-bar ul li a:hover > i {
  color: #ff5e14 !important;
}

.checkout-page .top-bar::before  {
  display: none;
}

.page-cart header {
  position: relative;
}

.checkout-page .location {
  background-image: none;
  padding: 1.5rem 0;
}

.checkout-page .location::after {
  display: none;
}

.checkout-page .empty-cart {
  padding: 1rem 0 4rem;
  color: rgba(4, 19, 49, 0.8);
}

.checkout-page .empty-cart .icon {
  font-size: 3.5rem;
  color: rgba(4, 19, 49, 0.25);
}

.checkout-page .empty-cart h6 {
  font-size: 25px;
}

.checkout-page .empty-cart p {
  font-size: 0.95rem;
  color: rgba(4, 19, 49, 0.6);
}

.checkout-steps {
  width: 600px;
}

.checkout-steps .step {
  font-family: 'Barlow Condensed', sans-serif;
  position: relative;
  width: 197px;
  padding: 2rem 0.5rem 1rem;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.checkout-steps .step::before {

}

.checkout-steps .step::after {

}

.checkout-steps .step.current::before {

}

.checkout-steps .step.current::after {
  
}

.checkout-steps .step.current {
  color: #ff5e14;
}

.checkout-steps .step.pased::before {

}

.checkout-steps .step.pased::after {
  
}

.checkout-steps .step i {
  font-size: 1.2rem;
}

.checkout-page footer {
  font-size: 0.85rem;
  background-image: none;
  color: rgba(255, 255, 255, 0.8) !important;
}

.checkout-page footer::after {
  display: none;
}

.checkout-page footer ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.checkout-page footer .text-secondary {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75) !important;
}

/*******************************
* Account
*******************************/


/*******************************
* Quick View
*******************************/
.quick-view .close {
  position: absolute;
  width: 45px;
  height: 45px;
  z-index: 1;
  top: 0;
  right: 0;
}

.quick-view h3 {
  font-size: 35px;
}

.quick-view .product-content-picture {
  width: 100%;
}

.quick-view .product-content-picture img {
  width: 100%;
  height: auto;
}

/* .quick-view .product-content-thumbnails .slick-track {
  margin-left: 0;
  margin-right: auto;
} */

.quick-view .owl-carousel .owl-item img {
  width: 90%;
}

.quick-view .product-thumbnail {
  display: inline-block;
  width: 100px;
  margin: 0 0.4rem;
  border: 2px solid #f3f3f3;
}

.quick-view .product-thumbnail:hover {
  border-color: rgba(108, 117, 125, 0.2);
}

.quick-view .product-thumbnail.active {
  border-color: #ff5e14;
}

.quick-view .btn-gallery {
  position: absolute;
  width: 15px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  color: rgba(3, 15, 44, 0.5);
  top: 50%;
  margin-top: -20px;
  z-index: 1;
  line-height: 40px;
  font-size: 1.1rem;
}

.quick-view .btn-gallery:hover {
  color: rgba(3, 15, 44, 0.75);
}

.quick-view .btn-quickview-back-gallery {
  left: -15px;
}

.quick-view .btn-quickview-next-gallery {
  right: -15px;
}

.quick-view .product-price span.price {
  font-size: 1.7rem;
  color: #ff5e14;
}

.quick-view .product-price span.text-secondary {
  font-size: 0.93rem;
}

.quick-view .product-offer-price {
  color: rgba(3, 15, 44, 0.8);
}

.quick-view .product-offer-price span.regular-price {
  font-size: 1.35rem;
  color: rgba(3, 15, 44, 0.5);
  text-decoration: line-through;
  font-weight: 500;
}

.quick-view .product-offer-price span.offer-price {
  font-size: 1.7rem;
  color: #ff5e14;
  font-weight: 500;
}

.quick-view .product-offer-price span.badge {
  vertical-align: middle;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.quick-view .product-offer-price span.text-secondary {
  font-size: 0.9rem;
}

.quick-view .product-summary {
  font-size: 0.95rem;
}

.quick-view .product-summary img.product-mark {
  width: 100px;
}

.quick-view .product-cart-options .stock-alert {
  font-size: 0.95rem;
}

@media screen and (max-width: 992px) {

  .quick-view .box-gallery {
    margin-bottom: 2rem;
  }

  .quick-view .product-thumbnail {
    display: block;
    margin: 0 auto;
  }

}

/*******************************
* Marks
*******************************/
#marksCarousel {
  overflow: hidden;
}

.marks-item {
  width: 230px;
  height: 53px;
  margin: auto;
}

.marks-item img {
  width: 150px !important;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}

.marks-item:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 0.9;
}

/*******************************
* 404
*******************************/
.not-found {
  padding: 4rem 0 5rem !important;
}

.not-found h1 {
  font-size: 15rem;
}

@media screen and (max-width: 576px) {
  .not-found h1 {
    font-size: 12rem;
  }
}

/*******************************
* Preloader
*******************************/
.preloader {
  background-color: #fff;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1040 !important;
}

.preloader-spinner {
  -webkit-animation: 1s ease-out 0s normal none infinite running pulsate;
  animation: 1s ease-out 0s normal none infinite running pulsate;
  border: 5px solid #ff5e14;
  border-radius: 40px;
  display: block;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 10;
}

@-webkit-keyframes pulsate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes pulsate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

/*******************************
* Footer
*******************************/
footer {
  background: url('../../img/content/bg-footer-white.png') top right no-repeat #051638;
  background-size: 80% auto;
  z-index: 1;
}

footer::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  background-color: #051638;
  z-index: -1;
}

.newsletter {
  padding: 2.35rem 0;
  background-color: #041332;
}

.newsletter .box-icon {
  width: 45px;
  height: 45px;
}

.newsletter .form-control {
  background-color: #fff;
  border-color: #fff;
}

.newsletter .btn-dark:hover, .newsletter .btn-dark:active {
  background-color: #041332 !important;
  border-color: #041332 !important;
  color: #fff !important;
}

.newsletter .h5 {
  font-size: 27px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter .form-control {
  padding: 1.3rem 1.8rem;
}

.newsletter .btn-dark {
  padding: 1.35rem 3rem;
}

footer .h6 {
  font-size: 19px;
}

footer hr.bg-success {
  width: 30px;
}

.footer-info {
  padding: 7rem 0 0;
}

.footer-info .company-summary {
  font-size: 0.97rem;
}

.footer-brand {
  width: 190px;
}

.footer-info ul.pages li a {
  color: rgba(255, 255, 255, 0.75);
}

/* .footer-info ul.product-pages li {
  width: 48%;
} */

.footer-info ul.pages li a:hover {
  color: #ff5e14;
}

.footer-info hr {
  border-color: rgba(255, 255, 255, 0.05);
}

address {
  font-style: normal;
}

address {
  font-style: normal;
}

address ul li {
  width: 49%;
  padding-left: 1.8rem;
}

address span.position-absolute {
  top: 3px;
  left: 3px;
}

address ul li {
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 1rem;
  font-size: 0.89rem;
}

address ul li a {
  color: inherit;
}

address ul li a:hover {
  color: #fff;
}

address ul li i {
  font-size: 1rem;
}

.social-links li a {
  width: 40px;
  height: 40px;
  line-height: 41px;
  background-color: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.35) !important;
}

.social-links li a:hover {
  color: rgba(255, 255, 255, 1) !important;
  background-color: #ff5e14;
}

.copyright {
  background-color: #041332;
  font-size: 0.86rem;
}

.copyright .text-light {
  color: rgba(255, 255, 255, 0.45) !important;
}

.copyright a.text-light:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.dev {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
}

.dev a.text-primary:hover {
  color: #ff5e14 !important;
  text-decoration: underline;
}

.btn-up {
  position: fixed;
  bottom: 20px;
  right: 15px;
  width: 45px;
  height: 45px;
  min-width: auto;
  text-align: center;
  line-height: 45px;
  padding: 0;
  transition: 0.4s;
  opacity: 0;
  background-color: #ff5e14 !important;
  color: #fff !important;
  z-index: 999;
  font-size: 1.15rem;
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
          transform: scale(0);
}

.show-btn-up {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 576px) {

  .news-text {
    text-align: center;
  }

  .newsletter {
    padding: 5rem 0;
  }

  .newsletter .h5 {
    font-size: 30px;
  }

  .newsletter p {
    margin-bottom: 1rem !important;
  }

  .newsletter .form-control {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .newsletter .input-group-prepend {
    display: block;
    width: 100%;
  }

  .newsletter .btn {
    width: 100%;
  }

  .footer-brand {
    margin: 0 auto 2rem !important;
  }

  .company-summary {
    text-align: center;
  }

  address ul li {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  address ul li span.position-absolute {
    position: relative !important;
    margin-bottom: 0.75rem;
  }

  .social-links {
    text-align: center;
  }

  .dev {
    margin-top: 2.5rem;
  }

  .btn-up {
    bottom: 35px;
  }

}

@media screen and (max-width: 992px) {

  footer {
    background-size: contain;
  }

  .news-text {
    margin-bottom: 1rem;
  }

  .footer-info {
    padding: 4rem 20px 0;
  }

  .copyright {
    text-align: center;
  }

  .copyright div.text-right {
    text-align: center !important;
  }

}