@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700");
* {
  font-family: 'Roboto', san-serif;
  box-sizing: border-box; }
  *:focus {
    outline: 0; }

body {
  position: relative;
  background-color: #ecebeb;
  margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto; }

header {
  background-color: #fff;
  padding: 0 15px; }
  header .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0; }
    @media (max-width: 500px) {
      header .container {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; } }
    header .container .logo {
      margin-left: 10px; }
      @media (max-width: 500px) {
        header .container .logo {
          margin-left: 0; } }
      header .container .logo img {
        width: 180px; }
    header .container .search-form input {
      float: left;
      height: 34px;
      padding: 0 15px;
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-right: 0;
      border-radius: 7px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    header .container .search-form button {
      cursor: pointer;
      float: left;
      background-color: #fff;
      height: 34px;
      padding: 0 10px;
      margin: 0;
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-left: 0;
      border-radius: 7px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    @media (max-width: 500px) {
      header .container .search-form {
        margin-top: 15px; } }

nav {
  background: linear-gradient(#646464, #5c5c5c);
  padding: 0 20px;
  overflow: hidden; }
  nav .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  nav .toggle-button {
    display: none;
    width: 36px;
    height: 32px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: linear-gradient(#555555, #454545);
    border-radius: 6px;
    transition: all .3s; }
    @media (max-width: 950px) {
      nav .toggle-button {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    nav .toggle-button:hover {
      background: linear-gradient(#454545, #555555); }
    nav .toggle-button span {
      position: relative;
      width: 22px;
      height: 2px;
      background-color: #fff; }
      nav .toggle-button span:before, nav .toggle-button span:after {
        position: absolute;
        content: '';
        width: 22px;
        height: 2px;
        background-color: #fff;
        top: -6px; }
      nav .toggle-button span:after {
        top: auto;
        bottom: -6px; }
  nav .main-menu {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0; }
    @media (max-width: 950px) {
      nav .main-menu {
        display: none; } }
    nav .main-menu li {
      display: inline; }
      nav .main-menu li a {
        display: inline-block;
        padding: 0 20px;
        line-height: 42px;
        color: #fff;
        font-size: 12px;
        font-weight: 300;
        text-transform: uppercase;
        text-decoration: none;
        transition: all .3s; }
        nav .main-menu li a.active {
          background-color: #00a9df; }
          nav .main-menu li a.active:hover {
            background-color: #00a9df; }
        nav .main-menu li a:hover {
          background-color: #4d4d4d; }
  nav .contact-info {
    float: right;
    color: #fff;
    font-weight: 300;
    font-size: 16px; }
    nav .contact-info a {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      height: 42px;
      color: #fff;
      text-decoration: none; }
    nav .contact-info i.fa {
      font-size: 28px;
      margin-right: 7px; }

ul.toggle-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0; }
  ul.toggle-menu li a {
    background-color: #646464;
    display: block;
    line-height: 42px;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #5c5c5c; }
    ul.toggle-menu li a.active {
      background-color: #00a9df; }
    ul.toggle-menu li a:hover {
      background-color: #5a5a5a; }

.wrapper {
  width: calc(100% - 295px);
  margin-left: 15px; }
  @media (max-width: 950px) {
    .wrapper {
      width: 100%;
      margin-left: 0; } }

main {
  margin-top: 20px;
  padding: 0 15px; }
  main .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    main .container aside {
      width: 280px; }
      @media (max-width: 950px) {
        main .container aside {
          display: none; } }
      main .container aside .aside-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 15px;
        border-top-left-radius: 10px;
        overflow: hidden; }
        main .container aside .aside-menu ol {
          padding: 0 15px;
          height: 40px;
          line-height: 40px;
          font-weight: 300;
          color: #fff;
          font-size: 13px;
          text-transform: uppercase;
          text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
          background-color: #525252; }
        main .container aside .aside-menu li.info {
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-align-items: center;
          -ms-flex-align: center;
          align-items: center;
          font-size: 14px;
          color: #646464;
          padding: 10px 15px;
          background-color: #fff;
          border-left: 1px solid rgba(0, 0, 0, 0.2);
          border-right: 1px solid rgba(0, 0, 0, 0.2);
          border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
          main .container aside .aside-menu li.info i.fa {
            font-size: 32px;
            margin-right: 8px; }
          main .container aside .aside-menu li.info a {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            border: 0;
            padding: 0;
            line-height: normal;
            height: auto; }
        main .container aside .aside-menu li a {
          background-color: #fff;
          display: block;
          height: 40px;
          line-height: 40px;
          padding: 0 15px;
          font-size: 14px;
          color: #646464;
          border-left: 1px solid rgba(0, 0, 0, 0.2);
          border-right: 1px solid rgba(0, 0, 0, 0.2);
          border-bottom: 1px solid rgba(0, 0, 0, 0.2);
          text-decoration: none; }
          main .container aside .aside-menu li a:hover {
            color: #00a9df; }
    main .container section {
      margin-bottom: 20px;
      width: 100%; }
      main .container section .title {
        padding: 0 15px;
        border-top-left-radius: 10px;
        height: 40px;
        line-height: 40px;
        font-weight: 300;
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        background-color: #525252; }
      main .container section .content {
        overflow: hidden;
        padding: 15px;
        color: #646464;
        font-size: 15px;
        background-color: #fff;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2); }

.mid-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mid-content div {
  width: calc(50% - 6px);
  background-color: #fff;
  padding: 15px;
  font-size: 0.9em;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .mid-content div { width: 100%; }
  .mid-content div { margin-bottom: 20px; }
}
.mid-content div h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}
.mid-content div p {
  color: #646464;
  margin-bottom: 0;
}
.interna-content {
}
.flex-content {
  display: flex;
}
.flex-content p {
  margin-top: 5px;
}
.interna-content img.horizontal { width: 100%; }
.interna-content img.vertical {
  height: 350px;
  margin-right: 15px;
}
.interna-content ul {
  list-style: none;
  padding-left: 10px;
}
.interna-content ul li {
  color: #00a9df;
  /*font-size: 0.9em;*/
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 620px) {
  .flex-content {
    flex-direction: column;
  }
  .interna-content img.vertical {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  .flex-content p { margin-top: 20px; }
}

.products-content, .brands-content {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap; }
  .products-content p {
    width: 100%;
    margin: 0 8px 20px 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb; }
  .products-content .product, .products-content .brand, .brands-content .product, .brands-content .brand {
    float: left;
    width: calc(20% - 10px);
    background-color: #fff;
    padding: 10px;
    margin: 0 5px 15px 5px;
    border: 1px solid #ebebeb;
    transition: all .2s; }
    @media (max-width: 1024px) {
      .products-content .product, .products-content .brand, .brands-content .product, .brands-content .brand {
        width: calc(25% - 10px); } }
    @media (max-width: 600px) {
      .products-content .product, .products-content .brand, .brands-content .product, .brands-content .brand {
        width: calc(33.3% - 10px); } }
    @media (max-width: 480px) {
      .products-content .product, .products-content .brand, .brands-content .product, .brands-content .brand {
        width: calc(50% - 10px); } }
    .products-content .product:hover, .products-content .brand:hover, .brands-content .product:hover, .brands-content .brand:hover {
      border-color: #e1e1e1;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
      .products-content .product:hover .product-img img, .products-content .brand:hover .product-img img, .brands-content .product:hover .product-img img, .brands-content .brand:hover .product-img img {
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15); }
    .products-content .product-img, .products-content .brand-img, .brands-content .product-img, .brands-content .brand-img {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      background-color: #fff;
      height: 180px;
      text-align: center;
      overflow: hidden; }
      .products-content .product-img img, .products-content .brand-img img, .brands-content .product-img img, .brands-content .brand-img img {
        max-width: 100%;
        max-height: 100%;
        transition: all .3s; }
    .products-content .product-title, .products-content .brand-title, .brands-content .product-title, .brands-content .brand-title {
      padding: 5px 0;
      margin-top: 10px; }
      .products-content .product-title a, .products-content .brand-title a, .brands-content .product-title a, .brands-content .brand-title a {
        color: #646464;
        text-decoration: none; }
      .products-content .product-title span a, .products-content .brand-title span a, .brands-content .product-title span a, .brands-content .brand-title span a {
        display: block;
        margin-bottom: 5px;
        font-size: 13px;
        font-weight: 600;
        color: #00a9df;
        text-decoration: none;
        text-transform: uppercase; }
  .products-content .brand-img, .brands-content .brand-img {
    height: 100px; }
  .products-content .pagination-wrapper, .brands-content .pagination-wrapper {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 10px; }
    .products-content .pagination-wrapper .pagination, .brands-content .pagination-wrapper .pagination {
      margin: 0;
      padding: 0;
      list-style: none; }
      .products-content .pagination-wrapper .pagination li, .brands-content .pagination-wrapper .pagination li {
        display: inline; }
        .products-content .pagination-wrapper .pagination li a, .brands-content .pagination-wrapper .pagination li a {
          color: #646464;
          display: inline-block;
          margin: 0 5px;
          width: 24px;
          height: 24px;
          line-height: 24px;
          border: 1px solid transparent;
          text-decoration: none; }
          .products-content .pagination-wrapper .pagination li a:hover, .brands-content .pagination-wrapper .pagination li a:hover {
            border-color: #ebebeb; }
          .products-content .pagination-wrapper .pagination li a.active, .brands-content .pagination-wrapper .pagination li a.active {
            color: #000;
            border: 0; }

.product-details {
  overflow: hidden; }
  .product-details .img {
    width: 260px;
    float: left;
    padding: 5px;
    border: 1px solid #ebebeb;
    cursor: -webkit-zoom-in;
    cursor: zoom-in; }
    @media (max-width: 500px) {
      .product-details .img {
        width: 100%; } }
    .product-details .img img {
      display: block;
      width: 100%;
      max-width: 100%; }
  .product-details .details {
    width: calc(100% - 280px);
    float: left;
    list-style: none;
    padding: 0;
    margin: 0 0 0 20px; }
    @media (max-width: 500px) {
      .product-details .details {
        width: 100%;
        margin: 20px 0 0; } }
    .product-details .details li {
      padding: 8px 0;
      border-bottom: 1px solid #e4e4e4; }
      .product-details .details li:last-child {
        border: 0; }
      .product-details .details li span {
        font-weight: 600; }
      .product-details .details li a {
        color: #00a9df; }
        .product-details .details li a:hover {
          text-decoration: none; }

#slider {
  position: relative; }
  #slider .fa {
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 15px;
    color: #fff;
    font-size: 60px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 99; }
    #slider .fa:hover {
      opacity: 0.8; }
  #slider .fa-angle-right {
    left: auto;
    right: 15px; }

.main-slider {
  border: 4px solid #fff;
  border-radius: 5px; }
  .main-slider div {
    background-size: cover;
    background-position: center;
    height: 340px; }
  .main-slider .slick-slide {
    margin: 0; }

.categories-responsive {
  display: none; }
  @media (max-width: 950px) {
    .categories-responsive {
      display: block; } }
  .categories-responsive select {
    background-color: #fff;
    width: 100%;
    height: 34px;
    padding: 0 15px;
    color: #646464;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.3); }

.clients { overflow: hidden; }
.clients div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(20% - 10px);
  height: 70px;
  margin: 0 5px 20px 5px;
  float: left; }
@media (max-width: 650px) { .clients div { width: calc(25% - 10px); } }
@media (max-width: 500px) { .clients div { width: calc(33.3% - 10px); } }
.clients div img {
  max-width: 100%;
  max-height: 100%; }

  #form {
    float: left;
    width: 100%;
    max-width: 543px; }
@media (min-width: 650px) { #form { padding-right: 30px; } }
  #formResp {
    display: none;
      background: #ecebeb;
      padding: 8px 10px;
      margin: 20px 0 0;
      font-size: 0.9em;
      border-radius: 7px;
  }
  #formResp.error {
    background-color: #EF4836;
    color: #fff;
  }
  #formResp.success {
    background-color: #00B16A !important;
    color: #fff;
  }
  #form ul {
    list-style: none;
    margin: 20px 0 20px 0;
    padding-left: 10px;
  }
  #form ul li { margin-bottom: 5px; }
  #form ul li i {
    font-size: 1.2em;
  }

  #form ul li a {
    color: #00a9df;
  }
  #form form { margin: 20px 0 0; }
  #form form label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
  }
  #form form input, textarea {
    display: block;
    width: 100%;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 10px;
    margin: 5px 0 10px;
    border-radius: 7px; }
  #form form select {
    display: block;
    width: 100%;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0 10px;
    margin: 5px 0 10px;
    border-radius: 7px; }
  #form textarea { height: 100px; } 
  #form form input[type="submit"] {
    line-height: 30px;
    padding: 0;
    background-color: #00a9df;
    color: #fff;
    border: 0;
    text-transform: uppercase;
  }

footer {
  margin-top: 20px;
  padding: 20px;
  background-color: #525252;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 300;
  text-align: center; }

.modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.6); }
  .modal .img {
    position: relative;
    background-color: #fff;
    border: 5px solid #fff;
    border-radius: 6px; }
    .modal .img img {
      display: block;
      max-width: 100%; }
    .modal .img hr {
      opacity: 0.2;
      margin: 0;
      margin-bottom: 10px; }
    .modal .img i.fa {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 26px;
      transition: all .3s;
      cursor: pointer; }
      .modal .img i.fa:hover {
        color: #00a9df; }
    .modal .img h1 {
      margin: 0;
      padding: 0;
      padding: 12px 50px 12px 10px;
      font-size: 18px; }

.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ecebeb;
  z-index: 999; }
  .preloader span {
    display: block;
    color: #646464;
    font-size: 14px; }

.loader {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto; }

#loader-7 {
  -webkit-perspective: 120px;
  -moz-perspective: 120px;
  -ms-perspective: 120px;
  perspective: 120px; }

#loader-7:before {
  content: "";
  position: absolute;
  border-top-left-radius: 8px;
  left: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  background-color: #00a9df;
  -webkit-animation: flip 1s infinite;
  animation: flip 1s infinite; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  100% {
    -webkit-transform: rotateY(180deg) rotateX(180deg);
    transform: rotateY(180deg) rotateX(180deg); } }

@keyframes flip {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  100% {
    -webkit-transform: rotateY(180deg) rotateX(180deg);
    transform: rotateY(180deg) rotateX(180deg); } }
