@charset "UTF-8";
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  min-height: 100% !important;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: 'Montserrat', sans-serif;
}

.hamburger {
  padding: 20px 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  overflow: visible;
  position: absolute;
  z-index: 99;
}

.hamburger:hover, .hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner {
  background-color: #002d51;
}

.hamburger.is-active .hamburger-inner::after {
  background-color: #002d51;
}

.hamburger.is-active .hamburger-inner::before {
  background-color: #002d51;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: '';
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: black;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.container {
  padding: 20px;
  width: 100%;
  margin: 0 auto;
}

.cta-main,
.cta-secondary {
  text-decoration: none;
  padding: 22px 30px;
  display: inline-block;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 500;
  cursor: pointer;
  color: white;
  text-align: center;
}

.cta-main {
  background-color: #e19f41;
  border-bottom: 2px solid #dc7200;
}

.cta-main:hover {
  background-color: #dc7200;
  border-color: #9f5200;
}

.cta-secondary {
  border: 2px solid #e19f41;
}

.cta-secondary:hover {
  background-color: #e19f41;
}

.header {
  width: 100%;
  position: relative;
  z-index: 999;
}

.header .logo {
  width: 100%;
  padding: 25px 20px;
}

.header .logo img {
  width: 100%;
}

.header nav {
  height: 68px;
  position: relative;
}

.header .cart-button {
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header .cart-button > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
}

.header .cart-button span {
  font-size: 40px;
}

.header .cart-button .cart-count {
  font-size: 24px;
  padding-left: 5px;
  vertical-align: super;
}

.header .cart-button a {
  text-decoration: none;
  color: #002d51;
}

.header .cart-button a:hover {
  color: #00447a;
}

.header .cart-summary {
  display: none;
  position: absolute;
  z-index: 100;
  width: 90vw;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  top: 50px;
  background-color: white;
  border: 3px solid #363636;
}

.header .cart-summary ul {
  padding: 0 10px 20px 10px;
}

.header .cart-summary ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

.header .cart-summary ul li .thumbnail {
  width: 60px;
  height: 60px;
  max-width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.header .cart-summary ul li .thumbnail img {
  max-height: 100%;
  max-width: 100%;
}

.header .cart-summary ul li .product-sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .cart-summary ul li .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .cart-summary ul li .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .cart-summary ul li a {
  font-size: 14px;
  padding-bottom: 10px;
}

.header .cart-summary ul li a .volume {
  font-size: 18px;
  padding-right: 10px;
}

.header .cart-summary ul li a:hover {
  color: #e19f41;
}

.header .cart-summary ul li .price {
  color: #002d51;
  font-size: 18px;
  font-weight: 700;
}

.header .cart-summary ul li .delete-btn {
  color: #363636;
  font-size: 28px;
  padding-left: 25px;
  cursor: pointer;
}

.header .cart-summary ul li .delete-btn:hover {
  color: #e19f41;
}

.header .cart-summary ul li:not(:last-child) {
  border-bottom: 1px solid #363636;
}

.header .cart-summary .cart-actions {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f1f1f1;
  padding: 20px;
  margin-top: 0;
}

.header .cart-summary .cart-actions .empty-cart,
.header .cart-summary .cart-actions .order-button {
  color: white;
  padding: 10px 25px;
  background-color: #e19f41;
  border: none;
  font-size: 16px;
  text-align: center;
}

.header .cart-summary .cart-actions .empty-cart:hover,
.header .cart-summary .cart-actions .order-button:hover {
  background-color: #dc7200;
}

.header .cart-summary .cart-actions .empty-cart {
  background-color: #636464;
  margin-right: 25px;
}

.header .cart-summary .cart-actions .empty-cart:hover {
  background-color: #363636;
}

.header .cart-summary.opened {
  display: block;
  padding-top: 0;
}

.header .search-button {
  display: block;
  padding: 10px 10px 5px 10px;
  cursor: pointer;
  color: white;
  background-color: #002d51;
  position: absolute;
  top: 7px;
  right: 20px;
}

.header .search-button span {
  font-size: 30px;
}

.header .search-button:hover {
  background-color: #00447a;
}

.header .search-input {
  display: none;
  width: 100%;
  position: absolute;
  right: 0;
  z-index: 15;
  padding: 15px;
  background-color: #d6dfe6;
  border: 1px solid #002d51;
  bottom: -67px;
}

.header .search-input form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.header .search-input form input {
  border: 1px solid #002d51;
  width: 80%;
  height: 35px;
  padding: 8px;
  font-size: 16px;
}

.header .search-input form button {
  width: 20%;
  height: 35px;
  background-color: #002d51;
  color: white;
  border: none;
}

.header .search-input.is-active {
  display: block;
}

.header .navigation {
  position: relative;
  z-index: 50;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 40px 0;
  list-style-type: none;
  background: white;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-box-shadow: 0 4px 5px -2px gray;
          box-shadow: 0 4px 5px -2px gray;
}

.header .navigation .nav-item {
  margin: 15px auto;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  position: relative;
}

.header .navigation .nav-item > a {
  text-decoration: none;
  color: #002d51;
  font-weight: bold;
  font-size: 22px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: inline-block;
}

.header .navigation .nav-item > a:hover {
  text-decoration: underline;
  color: #e19f41;
}

.header .nav-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.header .dropdown-arrow {
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  color: #002d51;
  vertical-align: bottom;
}

.header .dropdown {
  display: none;
  list-style-type: none;
}

.header .dropdown > li {
  margin: 10px 0;
}

.header .dropdown > li > a {
  font-size: 16px;
  text-decoration: none;
  color: #002d51;
  font-weight: bold;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: inline-block;
}

.header .dropdown > li > a:hover {
  color: #e19f41;
  text-decoration: underline;
}

.header .opened {
  display: block;
  padding: 15px 0 0 0;
}

.footer {
  background-color: #002d51;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .contacts {
  padding: 25px;
}

.footer .contacts .footer-menu {
  display: none;
}

.footer .contacts .contact-info {
  position: relative;
  margin-top: 20px;
}

.footer .contacts .contact-info span {
  width: 15px;
  height: auto;
  color: #e19f41;
  position: absolute;
  left: 0;
  padding-top: 5px;
}

.footer .contacts .contact-info p,
.footer .contacts .contact-info a {
  font-size: 16px;
  padding-left: 45px;
  color: white;
  line-height: 30px;
  vertical-align: middle;
}

.footer .contacts .contact-info .address {
  margin: 20px 0;
}

.footer .contacts .contact-info .phone {
  margin-bottom: 35px;
}

.footer .contacts .contact-info a {
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: inline-block;
}

.footer .contacts .contact-info a:hover {
  color: #e19f41;
}

.footer .contacts .contact-info .more {
  font-weight: 700;
  position: relative;
  padding-right: 20px;
}

.footer .contacts .contact-info .more span {
  right: 0;
  left: auto;
  padding-top: 1px;
  color: white;
}

.footer .contacts .contact-info .more:hover > span {
  color: #e19f41;
}

.footer .contacts .contact-info .more:hover {
  text-decoration: underline;
}

.footer .map-container {
  display: block;
}

.footer .map-container img {
  width: 100%;
}

.footer .copyright {
  background-color: #001f37;
  width: 100%;
  padding: 25px;
  text-align: center;
}

.footer .copyright p {
  color: white;
}

.footer .copyright .submenu {
  padding: 20px 0;
  text-align: center;
}

.footer .copyright .submenu a {
  text-decoration: none;
  color: #e19f41;
  padding: 0 20px;
  display: inline-block;
}

.footer .copyright .submenu a:not(:first-child) {
  border-left: 1px solid #636464;
}

.footer .copyright .submenu a:hover {
  text-decoration: underline;
}

.partners {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.partners .partner {
  margin-bottom: 35px;
}

.partners .partner img {
  margin: 0 auto;
}

.partners .partner:last-child {
  margin-bottom: 0;
}

.breadcrumbs {
  margin-bottom: 21px;
  list-style: none;
}

.breadcrumbs ul li {
  color: #808285;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.breadcrumbs ul li span {
  font-size: 16px;
  vertical-align: top;
}

.breadcrumbs ul li a {
  color: #002d51;
  text-decoration: underline;
  display: inline-block;
}

.breadcrumbs ul li + li::before {
  color: #002d51;
  content: '• ';
  padding: 0 5px;
}

.pagination .pagination-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pagination .pagination-nav > li {
  list-style-type: none;
  margin-bottom: 30px;
}

.pagination .pagination-nav .page-item {
  text-decoration: none;
  color: black;
  padding: 10px 15px;
}

.pagination .pagination-nav .page-item.active, .pagination .pagination-nav .page-item.prev, .pagination .pagination-nav .page-item.next {
  background-color: #e19f41;
  color: white;
}

.pagination .pagination-nav .page-item:hover {
  background-color: #e19f41;
  color: white;
}

.pagination .pagination-nav .page-item.next:hover, .pagination .pagination-nav .page-item.prev:hover, .pagination .pagination-nav .page-item.active:hover {
  background-color: #dc7200;
}

.contact-form h1 {
  margin-top: 60px;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 35px;
}

.contact-form form .form-input {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.contact-form form .form-input input {
  width: 100%;
  border: 1px solid #002d51;
  color: #002d51;
  padding: 15px;
  overflow: hidden;
  font-size: 16px;
}

.contact-form form .form-input textarea {
  width: 100%;
  border: 1px solid #002d51;
  padding: 15px;
  resize: none;
  height: 140px;
  overflow: auto;
  font-family: inherit;
  font-size: 16px;
}

.contact-form form .form-input .checkbox input {
  width: auto;
}

.contact-form form .form-input .checkbox #agreement {
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
  height: 0;
  overflow: hidden;
}

.contact-form form .form-input .checkbox .show {
  text-decoration: underline;
  color: black;
  font-size: 14px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 20px 0 20px 20px;
  background: none;
}

.contact-form form .form-input .checkbox .text {
  font-size: 14px;
  padding: 0 20px 20px 20px;
}

.contact-form form .form-input button {
  width: 100%;
  padding: 22px 30px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 500;
  cursor: pointer;
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  transition: 0.3s all;
  background-color: #e19f41;
  border-bottom: 2px solid #dc7200;
}

.contact-form form .form-input button:hover {
  background-color: #dc7200;
  border-color: #9f5200;
}

.banner .container {
  padding: 20px 0;
}

.banner .help {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 40px 20px;
  margin: 40px 0;
}

.banner .help .icon {
  margin-bottom: 40px;
}

.banner .help .icon span {
  color: #e19f41;
  font-size: 65px;
}

.banner .help .heading {
  margin-bottom: 40px;
}

.banner .help .heading h1 {
  font-size: 22px;
  text-align: center;
  margin-top: 0;
}

.sidemenu {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sidemenu h5 {
  margin-bottom: 25px;
  color: #002d51;
}

.sidemenu h5 span {
  vertical-align: middle;
}

.sidemenu .menu {
  list-style-type: none;
  border: 2px solid #e19f41;
  color: #002d51;
}

.sidemenu .menu > li:not(:last-child) {
  border-bottom: 1px solid #c6c6c6;
}

.sidemenu .menu .activator-link,
.sidemenu .menu .menu-item,
.sidemenu .menu .menu-item-dropdown {
  padding: 10px 13px;
  color: inherit;
}

.sidemenu .menu .menu-item {
  display: block;
}

.sidemenu .menu .menu-item:hover, .sidemenu .menu .menu-item.active {
  color: #e19f41;
}

.sidemenu .menu .dropdown-activator.activated .dropdown {
  display: block;
}

.sidemenu .menu .dropdown-activator.activated .dropdown-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sidemenu .menu .menu-item-dropdown.activator-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidemenu .menu .menu-item-dropdown.activator-link:hover {
  color: #e19f41;
}

.sidemenu .menu .dropdown-arrow {
  cursor: pointer;
  font-weight: 400;
  color: inherit;
  vertical-align: middle;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.sidemenu .menu a {
  font-size: 16px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}

.sidemenu .menu .dropdown {
  display: none;
  list-style-type: none;
  background-color: #f5f5f5;
}

.sidemenu .menu .dropdown > li {
  padding: 10px 0 20px 20px;
  color: #002d51;
}

.sidemenu .menu .dropdown > li > a {
  margin: 10px 0;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.sidemenu .menu .dropdown > li > a:hover {
  color: #e19f41;
  text-decoration: underline;
}

.sidemenu .menu .dropdown > li:first-child {
  padding-top: 20px;
}

.sidemenu .menu .dropdown > li.active {
  color: #e19f41;
}

.sidemenu.mobile {
  margin-top: 25px;
  display: block;
}

h1 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #002d51;
}

h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #002d51;
}

.heading h1 {
  font-size: 26px;
  margin: 20px 0;
  text-align: left;
}

table {
  width: 100%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: 1px solid #dee2e6;
  border-collapse: collapse;
}

table thead tr {
  background-color: #eaeaea;
}

table tr {
  vertical-align: middle;
  border-bottom: 1px solid #dee2e6;
}

table tr td,
table tr th {
  padding: 20px;
  color: black;
  border-right: 1px solid #dee2e6;
}

table tr:nth-child(odd) {
  background-color: #eaeaea;
}

table tr p {
  font-weight: 700;
  color: inherit;
}

table tr td {
  font-size: 14px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

p {
  font-size: 14px;
  color: #636363;
}

.count {
  margin-bottom: 25px;
}

.count p {
  font-weight: 700;
  margin-bottom: 15px;
}

.count .count-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.count .count-buttons .button-count {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #e19f41;
  color: white;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
}

.count .count-buttons .button-count:active {
  background-color: #e19f41;
}

.count .count-buttons .button-count:disabled {
  background-color: silver;
}

.count .count-buttons .number-product {
  display: inline-block;
  width: 100px;
  height: 50px;
  font-size: 22px;
  border: 1px solid silver;
  text-align: center;
}

#homepage {
  overflow: hidden;
}

#homepage .highlight {
  background-color: #002d51;
  color: white;
  padding: 20px 0;
}

#homepage .highlight .text {
  text-align: center;
}

#homepage .highlight .text h1 {
  color: #f1f1f1;
}

#homepage .highlight .text h1:first-child {
  margin-bottom: 40px;
}

#homepage .highlight .image {
  display: none;
}

#homepage .services {
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

#homepage .services .wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#homepage .services .wrapper .service {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

#homepage .services .wrapper .service a {
  text-decoration: none;
  color: #636363;
  padding: 50px 27px 40px 25px;
  width: 100%;
  height: 100%;
  border: 1px solid #c6c6c6;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#homepage .services .wrapper .service a:hover {
  border-bottom: 3px solid #c6c6c6;
}

#homepage .services .wrapper .service .service-heading {
  width: 65px;
  margin: 0 auto;
}

#homepage .services .wrapper .service .service-heading img {
  width: 100%;
  height: auto;
}

#homepage .services .wrapper .service h3 {
  margin: 30px 0 20px 0;
}

#homepage .services .wrapper .service ul li {
  list-style-type: none;
}

#homepage .services .wrapper .service:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

#homepage .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  text-align: center;
  margin-top: 60px;
  background-color: #f1f1f1;
}

#homepage .steps .container {
  padding: 45px 20px;
}

#homepage .steps .steps-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}

#homepage .steps .steps-icons .icon {
  margin-bottom: 35px;
}

#homepage .steps .steps-icons .icon h4 {
  font-size: 16px;
  margin-top: 40px;
  color: #002d51;
  margin-bottom: 0;
}

#homepage .whyus {
  margin-top: 60px;
}

#homepage .whyus .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 35px;
  padding: 0 15px;
}

#homepage .whyus .box p {
  margin-top: 25px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

#homepage .about-us {
  background-color: #002d51;
}

#homepage .about-us .container {
  padding: 0;
}

#homepage .about-us .aboutus-image {
  background-image: url("../images/about-us.png");
  background-size: cover;
  background-position: center center;
}

#homepage .about-us .aboutus-image img {
  visibility: hidden;
  width: 100%;
}

#homepage .about-us .aboutus-content {
  padding: 80px 20px;
  text-align: left;
  color: white;
}

#homepage .about-us .aboutus-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

#homepage .about-us .aboutus-content p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

#homepage .about-us .aboutus-content h3 {
  color: #e19f41;
  font-size: 18px;
  margin: 20px 0;
}

#homepage .about-us .aboutus-content h4 {
  font-size: 16px;
  color: #e19f41;
  margin-bottom: 50px;
}

#homepage .contact-form .container {
  padding: 45px 20px;
}

#product-detail {
  border-top: 17px solid #002d51;
}

#product-detail .product-page {
  padding: 20px 0;
}

#product-detail .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#product-detail .product-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#product-detail .product-image .main-picture {
  position: relative;
}

#product-detail .product-image img {
  max-width: 100%;
  height: auto;
}

#product-detail .product-image .label {
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}

#product-detail .product-image .thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#product-detail .product-image .thumbs a {
  display: block;
  width: 60px;
  height: 60px;
  margin: 5px;
}

#product-detail .product-image .thumbs img {
  width: 100%;
  height: 100%;
}

#product-detail .product-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#product-detail .product-info h2 {
  margin: 20px 0;
  font-weight: 500;
}

#product-detail .product-info p {
  color: black;
}

#product-detail .product-info p .original-price {
  text-decoration: line-through;
  padding-right: 10px;
}

#product-detail .product-info .total-price {
  font-size: 25px;
  font-weight: 700;
  text-align: left;
  margin: 10px 0;
}

#product-detail .product-info .info {
  padding: 20px 0;
}

#product-detail .product-info .info p {
  line-height: 25px;
  color: black;
}

#product-detail .product-info .info p b {
  padding-right: 15px;
}

#product-detail .product-info .product-actions .product-action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#product-detail .product-info .product-actions .product-action-buttons .cta-main {
  margin-bottom: 20px;
  width: 80%;
}

#product-detail .product-description .tab-nav {
  list-style-type: none;
  text-align: center;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  padding: 20px 0;
}

#product-detail .product-description .tab-nav .tab-item {
  padding: 10px 0;
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-bottom: 2px solid transparent;
}

#product-detail .product-description .tab-nav .tab-item.active-tab {
  color: #e19f41;
  border-bottom: 2px solid #e19f41;
}

#product-detail .product-description .tab-pane {
  display: none;
  text-align: left;
  padding: 0 20px;
}

#product-detail .product-description .tab-pane h3 {
  padding: 30px 0;
  font-size: 20px;
}

#product-detail .product-description .tab-pane > p,
#product-detail .product-description .tab-pane .description-body p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

#product-detail .product-description .tab-pane.active {
  display: block;
}

#product-detail #installation {
  padding: 40px 0;
  background-color: #f7f7f7;
}

#product-detail #installation .recommendations {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#product-detail #installation .recommendation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 20px;
  margin-bottom: 80px;
}

#product-detail #installation .recommendation-image {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#product-detail #installation .recommendation a {
  text-align: center;
  cursor: pointer;
  height: 100%;
}

#product-detail #installation .recommendation img {
  max-width: 100%;
  max-height: 100%;
}

#product-detail #installation .recommendation h2 {
  font-size: 18px;
  text-align: center;
}

#product-detail #installation .recommendation .price {
  font-weight: 700;
  font-size: 14px;
  color: black;
  margin-bottom: 5px;
}

#product-detail #installation .recommendation .price span {
  font-size: 16px;
}

#product-detail #installation .recommendation .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

#product-detail #installation .recommendation .actions .cta-main {
  padding: 10px 30px;
}

#product-detail #installation .recommendation .actions .order-btn {
  display: block;
}

#product-detail #installation .recommendation .actions .order-btn.in-basket {
  display: none;
}

#product-detail #installation .recommendation .actions .cancel-btn {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  padding: 12px 30px;
  display: none;
  cursor: pointer;
}

#product-detail #installation .recommendation .actions .cancel-btn:hover {
  text-decoration: underline;
}

#product-detail #installation .recommendation .actions .cancel-btn.remove-from-basket {
  display: block;
}

#product-detail #installation .wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#product-detail #installation h1 {
  font-weight: 400;
  text-align: left;
  font-size: 22px;
  margin-bottom: 0;
}

#product-detail #installation h2 {
  font-weight: 700;
  margin: 20px 0;
}

#product-detail #installation .summary {
  margin-bottom: 35px;
}

#product-detail #installation .summary .price {
  text-align: right;
}

#product-detail table tbody tr {
  background-color: white;
}

#product-detail table tbody tr:nth-child(even) {
  background-color: #eaeaea;
}

#blog {
  border-top: 17px solid #002d51;
}

#blog .article-preview {
  margin: 60px 0;
}

#blog .article-preview .article-thumbnail {
  margin-bottom: 25px;
  text-align: center;
}

#blog .article-preview .article-thumbnail a {
  width: 100%;
}

#blog .article-preview .article-thumbnail img {
  vertical-align: middle;
  max-width: 100%;
}

#blog .article-preview .publish-time {
  padding-top: 20px;
  text-align: center;
}

#blog .article-preview .publish-time p {
  display: inline-block;
}

#blog .article-preview .content {
  padding: 20px;
  margin-bottom: 25px;
}

#blog .article-preview .content h3 {
  color: #002d51;
  font-weight: 400;
  margin-bottom: 25px;
}

#blog .article-preview .content h3 a {
  text-decoration: none;
  color: inherit;
}

#blog .article-preview .content p {
  color: black;
}

#blog .article-preview .article-cta {
  text-align: center;
}

#photogallery {
  padding-bottom: 60px;
  border-top: 17px solid #002d51;
}

#photogallery .heading {
  margin-bottom: 40px;
}

#photogallery .heading p {
  font-size: 14px;
  padding: 15px 0;
  color: #636363;
}

#photogallery .gallery {
  text-align: center;
}

#photogallery .gallery a {
  display: inline-block;
}

#photogallery .gallery a img {
  width: 200px;
  height: 200px;
  padding: 5px;
}

.sl-wrapper {
  background-color: rgba(0, 0, 0, 0.8);
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-counter {
  color: white !important;
}

.sl-wrapper .sl-navigation .sl-next,
.sl-wrapper .sl-navigation .sl-prev {
  color: white;
  outline: none;
}

#search-results {
  border-top: 17px solid #002d51;
}

#search-results .heading h1 {
  font-size: 32px;
}

#search-results .results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#search-results .results > div:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

#search-results .results .item {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

#search-results .results .item .thumbnail {
  max-width: 80px;
  height: 80px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#search-results .results .item .thumbnail img {
  max-height: 100%;
  max-width: 100%;
}

#search-results .results .item .product-description {
  padding-left: 10px;
}

#search-results .results .item .product-description h3 {
  font-size: 18px;
}

#search-results .results .item .cta-main {
  padding: 15px 20px;
}

#products {
  border-top: 17px solid #002d51;
}

#products .product-listing .heading {
  margin-bottom: 35px;
}

#products .product-listing .categories {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 20px;
  border-bottom: 2px solid #e19f41;
  padding-bottom: 20px;
}

#products .product-listing .categories .category {
  display: block;
  width: 100%;
  border: 1px solid #c6c6c6;
  padding-top: 10px;
}

#products .product-listing .categories .category .thumbnail a {
  display: block;
  text-align: center;
}

#products .product-listing .categories .category .thumbnail img {
  vertical-align: middle;
  height: 75px;
  width: 75px;
  max-width: 75px;
}

#products .product-listing .categories .category .category-name {
  padding: 5px 20px 20px 20px;
  display: block;
  text-align: center;
}

#products .product-listing .categories .category .category-name a {
  text-decoration: none;
  color: #002d51;
  font-weight: 700;
}

#products .product-listing .categories .category .category-name a:hover {
  text-decoration: underline;
}

#products .product-listing .cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}

#products .product-listing .cards .card {
  width: 100%;
  border: 1px solid #c6c6c6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#products .product-listing .cards .card .card-image {
  height: 250px;
  position: relative;
  padding: 10px 10px 0 10px;
}

#products .product-listing .cards .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

#products .product-listing .cards .card .card-image .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 0;
}

#products .product-listing .cards .card .card-image .label > img:first-child {
  margin-bottom: 5px;
}

#products .product-listing .cards .card .card-image .label > img:only-child {
  margin-bottom: 0;
}

#products .product-listing .cards .card .card-caption {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#products .product-listing .cards .card .card-caption .detail a {
  text-decoration: none;
}

#products .product-listing .cards .card .card-caption .detail p:nth-child(3) {
  padding-top: 15px;
}

#products .product-listing .cards .card .card-caption h3 {
  color: #002d51;
  margin-bottom: 15px;
}

#products .product-listing .cards .card .card-caption .description {
  padding: 0;
}

#products .product-listing .cards .card .card-caption p {
  padding: 5px 0;
  font-size: 15px;
  color: black;
}

#products .product-listing .cards .card .card-caption .original-price {
  text-decoration: line-through;
}

#products .product-listing .cards .card .card-caption .total-price {
  font-weight: 700;
  font-size: 22px;
}

#products .product-listing .cards .card .card-caption .card-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}

#products .product-listing .cards .card .card-caption .cta {
  border: 2px solid #e19f41;
  padding: 14px 20px;
  text-decoration: none;
  color: #e19f41;
  font-weight: 700;
  width: 100%;
  font-size: 13px;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#products .product-listing .cards .card .card-caption .cta:hover {
  background-color: #e19f41;
  color: white;
}

#content-page {
  border-top: 17px solid #002d51;
}

#content-page .sidemenu {
  display: block;
}

#content-page .sidemenu h5 {
  margin-bottom: 10px;
}

#content-page .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}

#content-page .content .column-list {
  margin-bottom: 35px;
}

#content-page .content .column-list-unordered,
#content-page .content .column-list-ordered {
  padding-left: 20px;
}

#content-page .content ul li,
#content-page .content ol li {
  color: #636363;
  margin-bottom: 5px;
  padding-left: 10px;
  font-weight: 500;
  font-size: 14px;
}

#content-page .content ul li a,
#content-page .content ol li a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  color: #002d51;
}

#content-page .content ul li a:hover,
#content-page .content ol li a:hover {
  text-decoration: underline;
}

#content-page .column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

#content-page .column h1 {
  text-align: left;
  font-size: 26px;
}

#content-page .column h2 {
  margin-bottom: 20px;
}

#content-page .column h3 {
  font-size: 20px;
  color: #002d51;
  margin: 20px 0;
  font-weight: 400;
}

#content-page .column p {
  margin-bottom: 20px;
}

#content-page .column table tbody tr {
  background-color: white;
}

#content-page .column table tr:nth-child(even) {
  background-color: #eaeaea;
}

#content-page .column .column-image {
  padding: 0 40px;
  text-align: center;
}

#content-page .column .column-image img {
  width: 100%;
}

#content-page .column .column-table {
  overflow-x: auto;
  margin: 35px 0;
}

#content-page .column .column-gallery .gallery {
  text-align: center;
}

#content-page .column .column-gallery .gallery img {
  width: 45%;
  margin-right: 5px;
  margin-bottom: 10px;
}

#content-page .column .column-gallery .gallery img:nth-child(odd) {
  margin-left: 5px;
}

#not-found {
  border-top: 17px solid #002d51;
}

#not-found .heading h2 {
  margin-bottom: 10px;
}

#not-found .description p {
  color: #646464;
  font-size: 16px;
  margin-bottom: 20px;
}

#not-found .description h4 {
  margin-bottom: 10px;
}

#not-found .description .content {
  margin-bottom: 30px;
  color: #646464;
}

#not-found .description .content .list {
  padding-left: 45px;
  color: #333;
}

#not-found .description .content .list-item {
  font-size: 16px;
  line-height: 24px;
}

#not-found .description .content .list-item a {
  color: #002d51;
  text-decoration: none;
}

#not-found .description .content .list-item a:hover {
  color: #e19f41;
  text-decoration: underline;
}

.cart-section .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-section .steps .steps-list {
  width: 100%;
  list-style-type: none;
}

.cart-section .steps .list-item {
  width: 100%;
  color: #002d51;
  display: block;
}

.cart-section .steps .list-item a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  display: block;
}

.cart-section .steps .list-item.active {
  background-color: #002d51;
  color: white;
}

.cart-section .price {
  font-size: 16px;
}

.cart-section .item {
  border-top: 1px solid #ddd;
  padding: 15px 0 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cart-section .item .thumbnail {
  max-width: 80px;
  height: 80px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-section .item .thumbnail img {
  max-height: 100%;
  max-width: 100%;
}

.cart-section .item .product-description {
  padding-left: 10px;
}

.cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
}

.cart-total span {
  font-weight: 700;
  font-size: 16px;
}

.cart-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.cart-actions .back-to-market-button {
  background-color: #646464;
}

.cart-actions .back-to-market-button:hover {
  background-color: #363636;
}

.cart-actions .order-button {
  background-color: #e19f41;
}

.cart-actions .order-button:hover {
  background-color: #dc7200;
}

.action-btn {
  text-decoration: none;
  padding: 15px 10px;
  color: white;
  text-align: center;
  margin: 0 5px;
}

.cart-wrapper {
  margin: 80px 0;
}

#cart {
  border-top: 17px solid #002d51;
}

#cart .item .delete-btn {
  display: none;
  color: #363636;
  font-size: 28px;
  padding-left: 25px;
  cursor: pointer;
}

#cart .item .delete-btn:hover {
  color: #e19f41;
}

#cart .item .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

#cart .item .product-info h3 {
  font-size: 16px;
}

#cart .item .product-info p {
  font-size: 12px;
}

#cart .item .product-info a {
  text-decoration: none;
}

#cart .item .product-info .delete-btn {
  display: block;
}

#cart .item .actions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#cart .item .actions .delete-btn-link {
  display: none;
}

#cart .item .actions .count {
  margin-bottom: 0;
}

#cart .item .actions .count .count-buttons .button-count {
  width: 30px;
  height: 30px;
}

#cart .item .actions .count .count-buttons .number-product {
  width: 50px;
  height: 30px;
  font-size: 16px;
}

#cart .cart-summary {
  border-top: 1px solid #ddd;
  padding: 50px 0 15px;
}

#cart .empty-cart {
  margin-top: 25px;
  text-decoration: none;
  color: black;
  font-weight: 700;
  padding: 15px 0;
  text-align: right;
}

#cart .empty-cart:hover {
  text-decoration: underline;
}

#cart .cart-total {
  margin-bottom: 20px;
}

#cartForm form,
.order-form form {
  width: 100%;
}

#cartForm form .form-input,
.order-form form .form-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  width: 100%;
}

#cartForm form .form-input label,
.order-form form .form-input label {
  color: #636464;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 16px;
}

#cartForm form .form-input input,
.order-form form .form-input input {
  width: 100%;
  padding: 10px 15px;
  overflow: hidden;
  font-size: 14px;
  color: #555;
}

#cartForm form .form-input input::-webkit-outer-spin-button,
#cartForm form .form-input input::-webkit-inner-spin-button,
.order-form form .form-input input::-webkit-outer-spin-button,
.order-form form .form-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#cartForm form .form-input input[type='number'],
.order-form form .form-input input[type='number'] {
  -moz-appearance: textfield;
}

#cartForm form .form-input textarea,
#cartForm form .form-input input,
#cartForm form .form-input select,
.order-form form .form-input textarea,
.order-form form .form-input input,
.order-form form .form-input select {
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #555;
}

#cartForm form .form-input textarea,
.order-form form .form-input textarea {
  width: 100%;
  padding: 10px 15px;
  resize: none;
  overflow: auto;
  font-family: inherit;
  font-size: 14px;
  color: #555;
}

#cartForm form .form-input select,
.order-form form .form-input select {
  width: 100%;
  padding: 10px 15px;
  overflow: hidden;
  font-size: 14px;
  color: #777;
}

#cartForm form .form-input select option,
.order-form form .form-input select option {
  max-width: 100%;
  color: #555;
}

#cartForm form .radio-input,
.order-form form .radio-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cartForm form .radio-input label,
.order-form form .radio-input label {
  margin-bottom: 0;
  padding-right: 20px;
}

#cartForm form .radio-input input[type='radio'],
.order-form form .radio-input input[type='radio'] {
  width: auto;
}

#cartForm form .checkbox,
.order-form form .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cartForm form .checkbox input,
.order-form form .checkbox input {
  width: auto;
}

#cartForm form .checkbox p,
.order-form form .checkbox p {
  margin-left: 10px;
  color: black;
}

#cartForm form .form-submit,
.order-form form .form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

#cartForm form .form-submit button,
.order-form form .form-submit button {
  width: 100%;
  padding: 22px 30px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 500;
  cursor: pointer;
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  transition: 0.3s all;
  background-color: #e19f41;
  border-bottom: 2px solid #dc7200;
}

#cartForm form .form-submit button:hover,
.order-form form .form-submit button:hover {
  background-color: #dc7200;
  border-color: #9f5200;
}

.order-form {
  width: 100%;
  margin: 0 auto;
}

.order-form form .form-input input,
.order-form form .form-input select,
.order-form form .form-input textarea {
  padding: 20px 15px;
  font-size: 16px;
}

.order-form .input-two-col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order-form .input-two-col .col-2,
.order-form .input-two-col .col-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.order-form .form-text-area {
  width: 100%;
}

#cartForm {
  border-top: 17px solid #002d51;
}

#cartForm .cart-wrapper h3 {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 20px;
}

#cartForm .form-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  width: 100%;
}

#cartForm .form-input label {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
}

#cartForm .form-input input {
  border: 1px solid #ced4da;
  color: #002d51;
  border-radius: 5px;
}

#cartForm .form-input textarea {
  border: 1px solid #ced4da;
  height: 140px;
  border-radius: 5px;
}

#cartForm .total-price {
  margin-bottom: 20px;
}

#cartSummary {
  border-top: 17px solid #002d51;
}

#cartSummary .details h3 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}

#cartSummary .details .address,
#cartSummary .details .contact {
  margin-bottom: 15px;
}

#cartSummary .details p {
  color: black;
}

#cartSummary .cart-details {
  margin: 80px 0;
}

#cartSummary .item .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cartSummary .item .product-info h3 {
  font-size: 16px;
}

#cartSummary .item .product-info p {
  font-size: 12px;
}

#cartSummary .item .product-info a {
  text-decoration: none;
}

#cartSummary .item .product-info .delete-btn {
  display: block;
}

#cartSummary .item .thumbnail {
  max-width: 80px;
  height: 80px;
  width: 80px;
}

#cartSummary .item .thumbnail img {
  width: auto;
  height: 100%;
}

#cartSummary .item .item-count {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}

#cartSummary .item .price {
  text-align: right;
}

#cartSummary .transport-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
}

#cartSummary .cart-total {
  margin: 30px 0;
}

#cartSummary .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#cartSummary .checkbox input {
  width: auto;
  margin-top: 2px;
}

#cartSummary .checkbox p {
  color: black;
  margin-left: 15px;
}

#cartSummary .cart-actions {
  margin-top: 50px;
}

#cartFinal {
  border-top: 17px solid #002d51;
}

#cartFinal .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cartFinal .message h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

#cartFinal .message p {
  text-align: center;
  color: black;
  font-size: 14px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .header .logo {
    width: 80%;
    margin: 30px auto 0;
  }
  .header .cart-button .cart-summary {
    width: 65vw;
  }
  .header .cart-button .cart-summary ul {
    padding: 0 30px 20px 30px;
  }
  .header .cart-button .cart-summary a {
    padding-bottom: 0;
    padding-right: 15px;
  }
  .header .cart-button .cart-summary .description {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header .cart-button .cart-summary .cart-actions .order-button,
  .header .cart-button .cart-summary .cart-actions .empty-cart {
    padding: 15px 30px;
  }
  .container {
    width: 750px;
    padding: 40px;
  }
  .footer .contacts {
    margin: 30px 70px;
  }
  .footer .copyright {
    text-align: center;
  }
  .pagination .pagination-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact-form form .form-input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .contact-form form .form-textarea,
  .contact-form form .form-checkbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .contact-form form .form-submit {
    margin: 0 auto;
  }
  #homepage .services .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #homepage .services .wrapper .service {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
  }
  #homepage .steps .container {
    padding: 40px 0 80px;
  }
  #homepage .about-us .container {
    width: 100%;
  }
  #homepage .about-us .aboutus-content {
    padding: 80px 100px;
  }
  #homepage .contact-form {
    padding-top: 60px;
  }
  #homepage .contact-form h2 {
    text-align: center;
  }
  #homepage .contact-form .container {
    padding: 0 40px;
  }
  #homepage .contact-form form {
    width: 80%;
    margin: 0 auto 60px auto;
  }
  #product-detail .product-page .product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-top: 1px solid #c6c6c6;
    padding: 20px 0;
  }
  #product-detail .product-image {
    padding: 15px;
  }
  #product-detail .product-image .label {
    right: 15px;
    bottom: 15px;
  }
  #product-detail .product-info {
    padding: 15px;
    border-left: 1px solid #c6c6c6;
  }
  #blog .article-preview .content h3 {
    font-size: 24px;
  }
  #blog .article-preview .article-thumbnail {
    margin: 0 auto;
    width: 70%;
  }
  #search-results .results .item .product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #search-results .results .item .product-description {
    padding-left: 10px;
  }
  #products .product-listing .categories {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  #products .product-listing .cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  #products .product-listing .cards .card .card-image {
    height: 200px;
  }
  #content-page .column .column-image img {
    width: 70%;
  }
  .cart-total {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .cart-total span {
    margin-left: 35px;
  }
  .cart-actions {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .cart-actions .action-btn {
    width: 30%;
  }
  .cart-section .item {
    padding: 25px 0;
  }
  #cart .item .delete-btn {
    display: block;
  }
  #cart .item .product-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
  #cart .item .product-info .delete-btn {
    display: none;
  }
  #cart .item .actions {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #cart .item .actions .delete-btn-link {
    display: block;
    text-decoration: none;
  }
  #cartSummary .cart-actions .action-btn {
    width: 40%;
  }
  #cartFinal .message {
    width: 70%;
    margin: 0 auto;
  }
  #cartFinal .cart-actions .action-btn {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .container {
    width: 970px;
    margin: 0 auto;
  }
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 30px;
  }
  .header .logo {
    width: 25%;
    margin: 0;
    padding: 25px 0;
  }
  .header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: unset;
  }
  .header nav .hamburger {
    display: none;
  }
  .header nav .cart-button {
    position: unset;
    padding: 0 20px;
  }
  .header nav .cart-button > a {
    height: 68px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header nav .cart-button span {
    font-size: 36px;
  }
  .header nav .search-button {
    position: unset;
  }
  .header nav .search-input {
    width: 50%;
    right: 30px;
    bottom: -67px;
  }
  .header nav .navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: none;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    padding: 0;
    height: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header nav .navigation .nav-item {
    margin: 0;
    color: #002d51;
  }
  .header nav .navigation .nav-item > a {
    font-size: 14px;
    padding: 15px 15px;
    color: inherit;
  }
  .header nav .navigation .nav-item:last-child a {
    padding-right: 0;
  }
  .header nav .navigation .nav-item.active {
    color: #e19f41;
  }
  .header nav .navigation .dropdown-activator:hover > .dropdown {
    display: block;
    position: absolute;
    top: 45px;
    padding: 0 20px;
    z-index: 99;
    left: 0;
    width: auto;
    background-color: white;
    border: 2px solid #e19f41;
  }
  .header nav .navigation .dropdown-activator:hover > .dropdown li {
    text-align: left;
    padding: 8px 0;
    white-space: nowrap;
  }
  .header nav .navigation .dropdown-activator:hover > .dropdown li:not(:last-child) {
    border-bottom: 1px solid #464646;
  }
  .header nav .navigation .dropdown-activator:last-child:hover > .dropdown {
    left: -66px;
  }
  .header nav .dropdown-arrow {
    display: none;
  }
  .header nav .dropdown {
    display: none;
    list-style-type: none;
  }
  .header nav .dropdown > li > a {
    font-size: 14px;
  }
  .header nav .dropdown > li > a.active {
    color: #e19f41;
  }
  .header nav .opened {
    display: block;
    padding: 15px 0 0 0;
  }
  .header nav .cart-button {
    left: unset;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header nav .cart-button .cart-summary {
    top: 60px;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 50vw;
  }
  .header nav .cart-button .cart-summary ul {
    padding: 0 30px;
  }
  .header nav .cart-button:hover > .cart-summary {
    display: block;
  }
  .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .footer .wrapper .contacts {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 30px;
  }
  .footer .wrapper .contacts .footer-menu {
    display: block;
  }
  .footer .wrapper .contacts .footer-menu ul {
    list-style-type: none;
  }
  .footer .wrapper .contacts .footer-menu ul .footer-menu-item {
    color: white;
  }
  .footer .wrapper .contacts .footer-menu ul .footer-menu-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .footer .wrapper .contacts .footer-menu ul .footer-menu-item a:hover {
    color: #e19f41;
  }
  .footer .wrapper .contacts .footer-menu ul .footer-menu-item.active {
    color: #e19f41;
  }
  .footer .wrapper .map-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .partners {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border: none;
  }
  .partners .partner {
    margin: 25px;
  }
  .partners .partner:last-child {
    margin-bottom: 25px;
  }
  .partners .partner img {
    width: 80%;
  }
  .sidemenu {
    display: block;
    margin-right: 40px;
  }
  .sidemenu.mobile {
    display: none;
  }
  .banner {
    background: url("https://www.servisjunkers.cz/page/img/pic/cathegory-banner.png") no-repeat center center;
    margin: 60px 0;
    background-size: cover;
  }
  .banner .container {
    padding: 0 20px;
  }
  .banner .help {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    text-align: left;
    margin: 0;
    padding: 0;
  }
  .banner .help .banner-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner .help .icon,
  .banner .help .heading,
  .banner .help .cta {
    margin-bottom: 0;
  }
  .banner .help .heading {
    margin-left: 35px;
  }
  .banner .help .heading h1,
  .banner .help .heading p {
    text-align: left;
  }
  .banner .help .heading h1 {
    margin: 0;
  }
  .banner .help .heading p {
    font-size: 14px;
  }
  .banner .help .cta {
    padding: 18px 0;
  }
  .banner .help .cta .help-button {
    font-size: 13px;
    padding: 20px 45px;
  }
  .contact-form h2 {
    text-align: center;
  }
  .contact-form form {
    width: 90%;
    margin: 0 auto;
  }
  .contact-form form .form-textarea,
  .contact-form form .form-checkbox {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .contact-form form .form-submit {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  #homepage .highlight {
    width: 100%;
    height: 500px;
    position: relative;
  }
  #homepage .highlight .text {
    position: absolute;
    background-color: #002d51;
    z-index: 2;
    top: 0;
    width: 45%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 100px;
  }
  #homepage .highlight .text h1 {
    text-align: left;
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 50px;
  }
  #homepage .highlight .text::after {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: -249px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 500px 250px 0 0;
    border-color: #002d51 transparent transparent transparent;
  }
  #homepage .highlight .image-carousel {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  #homepage .highlight .slide1 {
    background-image: url("https://www.servisjunkers.cz/galerie/SliderComponent-204806734/1456410659_cs_slid1.png");
    background-position: center center;
    background-size: cover;
    opacity: 1;
  }
  #homepage .highlight .slide2 {
    background-image: url("https://www.servisjunkers.cz/galerie/SliderComponent-204806734/1456410659_cs_slid2.png");
    background-position: center center;
    background-size: cover;
    opacity: 0;
  }
  #homepage .highlight .slide3 {
    background-image: url("https://www.servisjunkers.cz/galerie/SliderComponent-204806734/1456410659_cs_slider3.png");
    background-position: center center;
    background-size: cover;
    opacity: 0;
  }
  #homepage .highlight .slide4 {
    background-image: url("https://www.servisjunkers.cz/galerie/SliderComponent-204806734/1531227115_cs_obr.png");
    background-position: center center;
    background-size: cover;
    opacity: 0;
  }
  #homepage .highlight .active-slide {
    opacity: 1;
  }
  #homepage .services .wrapper .service {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 25%;
  }
  #homepage .steps .container {
    padding-bottom: 50px;
  }
  #homepage .steps .steps-icons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #homepage .steps .steps-icons .icon {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 20px;
  }
  #homepage .steps .steps-icons .arrow {
    background-image: url("../images/arrows-down.png");
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 50px;
  }
  #homepage .steps .steps-icons .arrow:nth-child(4) {
    background-image: url("../images/arrows-up.png");
    background-position: bottom;
  }
  #homepage .whyus .wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #homepage .whyus .wrapper .box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #homepage .about-us .aboutus-image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #homepage .about-us .aboutus-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 40px 100px;
  }
  #homepage .about-us .aboutus-content h4 {
    font-weight: 400;
  }
  #product-detail .container {
    padding: 0 40px;
  }
  #product-detail .product-highlight {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  #product-detail .product-description .tab-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #product-detail .product-description .tab-nav .tab-item {
    padding: 15px 20px;
  }
  #product-detail table {
    width: 80%;
  }
  #product-detail #installation .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #product-detail #installation h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 35px;
  }
  #product-detail #installation h2 {
    font-size: 24px;
    text-align: center;
  }
  #product-detail #installation .summary {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #product-detail #installation .contact-form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #product-detail #installation .contact-form form {
    width: 100%;
  }
  #product-detail #installation .contact-form form .form-submit {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #blog {
    padding-bottom: 40px;
  }
  #blog .container {
    padding: 20px 60px;
  }
  #blog .heading {
    margin-bottom: 40px;
  }
  #blog .article-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #blog .article-preview .article-thumbnail {
    min-width: 30%;
    width: 30%;
    margin-bottom: 0;
    height: 300px;
  }
  #blog .article-preview .article-thumbnail img {
    max-height: 100%;
  }
  #blog .article-preview .article-thumbnail a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #blog .article-preview .article-content-preview {
    padding-left: 20px;
  }
  #blog .article-preview .publish-time {
    text-align: left;
  }
  #blog .article-preview .content {
    padding-left: 0;
  }
  #blog .article-preview .content h3 {
    font-size: 22px;
    font-weight: 700;
  }
  #blog .article-preview .article-cta {
    text-align: right;
  }
  #products {
    padding-top: 20px;
  }
  #products .container {
    padding: 0 40px;
  }
  #products .product-listing {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  #products .product-listing .categories {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  #products .product-listing .categories .category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px;
  }
  #products .product-listing .categories .category .category-name {
    padding: 0 20px 0 10px;
    text-align: left;
  }
  #products .product-listing .categories .category .category-name a {
    font-size: 14px;
  }
  #products .product-listing .cards {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  #products .product-listing .cards .card .card-caption h3 {
    font-size: 16px;
  }
  #products .product-listing .cards .card .card-caption p {
    font-size: 14px;
  }
  #products .product-listing .cards .card .card-caption .total-price {
    font-size: 20px;
    padding: 20px 0 0;
  }
  #content-page .sidemenu {
    min-width: 25%;
  }
  #content-page .content {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0;
    max-width: 75%;
  }
  #content-page .content p {
    padding-right: 20px;
  }
  #content-page .content .column-list {
    margin-top: 0;
  }
  #content-page .column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #content-page .column .double-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #content-page .column .double-column .subcolumn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 50%;
  }
  #content-page .column .double-column .subcolumn:last-child {
    max-width: 40%;
    padding-left: 20px;
  }
  #content-page .column .column-image img {
    width: 100%;
  }
  #content-page .column .column-gallery .gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #content-page .column .column-gallery .gallery img {
    padding: 5px;
    width: 150px;
    height: 150px;
  }
  #search-results .results .item .product-description .price {
    padding-top: 10px;
    font-size: 16px;
  }
  .cart-section .steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .cart-section .steps .steps-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cart-section .steps .list-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .cart-section .item .product-info h3 {
    font-size: 18px;
  }
  .cart-section .item .product-info p {
    font-size: 14px;
  }
  .cart-total span {
    font-size: 20px;
  }
  #cartForm form .form-two-col,
  .order-form form .form-two-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #cartForm form .form-input,
  .order-form form .form-input {
    width: 48%;
  }
  #cartForm form .input-two-col,
  .order-form form .input-two-col {
    width: 48%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #cartForm form .input-two-col .col-2,
  .order-form form .input-two-col .col-2 {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    margin-right: 1.5em;
  }
  #cartForm form .form-textarea,
  .order-form form .form-textarea {
    width: 100%;
  }
  #cartForm form .form-submit button,
  .order-form form .form-submit button {
    width: 30%;
  }
  #cartSummary .cart-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
  }
  #cartSummary .details {
    width: 35%;
    padding-right: 60px;
  }
  #cartSummary .cart-details {
    margin-top: 0;
    width: 65%;
  }
}

@media only screen and (min-width: 1100px) {
  .header nav .navigation .nav-item > a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1440px) {
  .header nav .cart-button .cart-summary {
    width: 35vw;
  }
  .container {
    width: 1319px;
  }
  .cta-main,
  .cta-secondary {
    font-size: 18px;
  }
  .banner .help {
    padding: 24px 0;
  }
  .contact-form form {
    width: 70%;
  }
  .heading h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  .footer .wrapper .contacts {
    margin: 0 0 0 70px;
    padding: 25px;
  }
  .footer .copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #homepage .highlight .text h1 {
    font-size: 42px;
  }
  #homepage .services .service h3 {
    font-size: 24px;
  }
  #homepage .services .service .service-body li {
    font-size: 18px;
  }
  #homepage .steps .steps-icons .icon h4 {
    font-size: 18px;
  }
  #homepage .about-us .wrapper .aboutus-content {
    padding: 60px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #homepage .about-us .wrapper .aboutus-content h2 {
    font-size: 36px;
  }
  #homepage .about-us .wrapper .aboutus-content p {
    text-align: left;
  }
  #homepage .about-us .wrapper .aboutus-content h3 {
    font-size: 24px;
  }
  #homepage .about-us .wrapper .aboutus-content h4 {
    font-size: 18px;
  }
  #homepage .contact-form h1 {
    font-size: 32px;
  }
  #homepage .contact-form form {
    width: 80%;
  }
  #homepage .contact-form form .form-input label,
  #homepage .contact-form form .form-input input {
    font-size: 18px;
  }
  #homepage .contact-form form .form-input button {
    font-size: 18px;
  }
  #homepage .contact-form form .form-input .checkbox p {
    font-size: 18px;
  }
  #product-detail #installation .wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #product-detail #installation .wrapper .summary {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #product-detail #installation .wrapper .contact-form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #product-detail #installation .wrapper .contact-form form {
    width: 100%;
  }
  #product-detail #installation .wrapper .contact-form form .form-submit {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #blog .article-preview .content {
    width: 80%;
    display: inline-block;
  }
  #blog .article-preview .content h3 {
    font-size: 24px;
  }
  #blog .article-preview .article-cta {
    display: inline-block;
  }
  #content-page .column h1 {
    font-size: 36px;
  }
  #content-page .column h2 {
    font-size: 28px;
  }
  #content-page .column h3 {
    font-size: 24px;
  }
  #content-page .column table thead th {
    font-size: 18px;
  }
  #content-page .column table tbody td {
    font-size: 16px;
  }
  #search-results .results .item {
    padding: 20px 0;
  }
  #search-results .results .item .product-description {
    padding-left: 20px;
  }
  #search-results .results .item .product-description h3 {
    font-size: 20px;
  }
  #search-results .results .item .product-description .price {
    font-size: 22px;
  }
  .cart-section .steps {
    width: 80%;
    margin: 0 auto;
  }
  #cartSummary .cart-details {
    margin-bottom: 0;
  }
  .cart-wrapper {
    width: 80%;
    margin: 80px auto 0 auto;
  }
  .order-form form .form-input label {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 2560px) {
  .banner .help {
    padding: 35px 0;
  }
  .header nav .navigation .nav-item {
    padding-right: 25px;
  }
  .header nav .navigation .nav-item > a {
    font-size: 18px;
  }
  .header nav .cart-button {
    padding-right: 35px;
  }
  .header nav .cart-button .cart-summary {
    width: 20vw;
  }
  .header nav .search-input {
    width: 30%;
  }
}
/*# sourceMappingURL=index.css.map */