@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:700");
/* Color's define */
body {
  background-color: #d3d3d3;
  font-family: 'Roboto', sans-serif;
}

header {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 0 .5rem black;
          box-shadow: 0 0 .5rem black;
}

header .header {
  background-color: #232d35;
  width: 100%;
  height: 70px;
  padding: 0px;
}

header .navbar {
  width: 80%;
  height: 100%;
  padding: 0.3rem 1rem;
  margin: 0px auto;
}

header .logo {
  width: auto;
  height: 100%;
  float: left;
  text-align: center;
}

header .info {
  width: auto;
  height: auto;
  float: right;
  margin-right: 20px;
}

header .nav {
  width: auto;
  height: 100%;
}

header .nav .menu {
  margin-top: 0.2rem;
  list-style: none;
  display: inline;
  text-transform: uppercase;
}

header .nav .menu__link {
  text-decoration: none;
  color: #eaeaea;
  display: inline-block;
  padding: .75rem 1rem;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

header .nav .menu__link:hover {
  color: #61b766;
}

header .nav .menu:after {
  display: block;
  content: '';
  padding-bottom: 0.7rem;
  border-bottom: solid 3px #61b766;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

header .nav li:hover:after, header .nav .menu__active:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

header .nav ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: auto;
  height: 100%;
}

header .info a, header .info p {
  display: block;
  text-decoration: none;
  color: #eaeaea;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}

header .info .fas {
  padding-right: 0.3rem;
  color: #61b766;
}

header .info a:hover {
  color: #61b766;
}

header .info .fa-mobile {
  padding-left: 0.2rem;
  padding-right: 0.5rem;
}

header .d-block {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

.box-content {
  width: 100%;
  background-color: #f7f7f7;
  margin-bottom: 2rem;
  padding: 1.5rem 3rem;
  /* Catalog.php */
}

.box-content .contents {
  margin-bottom: 3rem;
}

.box-content .title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-left: 50px;
  margin-bottom: 1.5rem;
}

.box-content .welcome .text {
  text-indent: 2rem;
  text-align: justify;
  margin-bottom: 0;
}

.box-content .whywe-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.box-content .whywe-items .whywe-item {
  cursor: pointer;
  padding: 1rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 0.2rem rgba(150, 150, 150, 0.5);
          box-shadow: 0 0 0.2rem rgba(150, 150, 150, 0.5);
  background: #f2f2f2;
  width: 25%;
  -webkit-transition: ease .8s;
  transition: ease .8s;
}

.box-content .whywe-items .whywe-item:hover {
  background: #e6e6e6;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.box-content .whywe-items .whywe-item:hover .fa-balance-scale {
  color: #003b9b;
}

.box-content .whywe-items .whywe-item:hover .fa-award {
  color: #53995b;
}

.box-content .whywe-items .whywe-item:hover .fa-bolt {
  color: #e8e00b;
}

.box-content .whywe-items .whywe-item h6 {
  font-size: 24px;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.box-content .whywe-items .whywe-item .text {
  text-align: center;
  margin: 0;
}

.box-content .whywe-items .whywe-item__img {
  display: block;
  text-align: center;
  font-size: 7rem;
  margin-bottom: 2rem;
  -webkit-transition: ease .6s;
  transition: ease .6s;
}

.btn-confirm {
  background-color: #53995b;
  color: white;
}

.btn-confirm:hover {
  background-color: #2f5734;
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #f7f7f7;
  margin-bottom: 2rem;
}

.box .sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 250px;
  background-color: #232d35;
  color: #c8cacc;
}

.box .sidebar .aheader {
  text-align: center;
  padding-top: .5rem;
}

.box .sidebar .aheader .filter {
  text-transform: uppercase;
  margin: 0;
}

.box .sidebar .aheader:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: '';
  padding-top: .5rem;
  width: 100%;
  border-bottom: solid 1px rgba(200, 202, 204, 0.1);
}

.box .sidebar #filter {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.box .sidebar .acpu {
  margin: 1rem 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.box .sidebar .agen {
  margin-bottom: 1rem;
}

.box .sidebar .article {
  text-align: center;
  margin-bottom: .5rem;
}

.box .sidebar .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  cursor: pointer;
  margin: 0;
  padding: .1rem .5rem;
  margin: .2rem 0;
  background-color: #131b21;
}

.box .sidebar .checkbox-label input {
  display: none;
}

.box .sidebar .checkbox-label input:checked ~ .checkmark {
  background-color: #53995b;
}

.box .sidebar .checkbox-label .checkmark {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: .5rem;
  background-color: #494c4f;
  border: solid 1px rgba(0, 0, 0, 0.5);
}

.box .sidebar .afooter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.box .sidebar .afooter .btn-reset {
  margin-right: .5rem;
}

.box .sidebar .afooter:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: '';
  padding-bottom: .5rem;
  width: 100%;
  border-top: solid 1px rgba(200, 202, 204, 0.1);
}

.box .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: calc(100% - 250px);
}

.box .content .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 1rem;
}

.box .content .items .item-info {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem 2.3rem;
  max-width: 250px;
}

.box .content .items .item-info .btn-cust {
  margin-top: .3rem;
  width: 100%;
}

.box .content .items .item-info .item-price {
  width: 100%;
}

.box .content .items .item-info .item-price .price-div {
  font-size: 18px;
  font-weight: 600;
  margin-top: .5rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  height: 2rem;
  color: white;
}

.box .content .items .item-info .item-price .price-div .price-p {
  line-height: 1.75rem;
  margin: 0;
  width: 70%;
  height: 100%;
  background-color: #53995b;
}

.box .content .items .item-info .item-price .price-div .fas {
  border-right: 1px solid transparent;
  border-radius: .25rem 0 0 .25rem;
  line-height: 1.75rem;
  width: calc(30%/2);
  background-color: #343a40;
  height: 100%;
}

.box .content .items .item-info .item-price .price-div .fa-question {
  cursor: pointer;
  border-right: 1px solid transparent;
  border-radius: 0 .25rem .25rem 0;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.box .content .items .item-info .item-price .price-div .fa-question:hover {
  background-color: #23272b;
}

.box .content .pagination {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-top: solid 1px rgba(91, 91, 91, 0.1);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.box .content .pagination__number {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.75rem;
  border-radius: 50%;
  margin: .3rem .2rem;
  text-decoration: none;
  color: rgba(73, 76, 79, 0.5);
  -webkit-transition: color, background-color .2s linear;
  transition: color, background-color .2s linear;
}

.box .content .pagination__number:hover, .box .content .pagination__number-current {
  color: black;
  background: rgba(0, 0, 0, 0.1);
}

/* catalog.php */
/* Item Card design */
.item-card {
  width: 250px;
  height: 250px;
  /* margin: 1rem; */
  cursor: pointer;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.item-card:hover .ic-front, .item-card:hover .ic-back {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.item-card:hover .ic-back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.item-card:hover .ic-front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.item-card .inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
          transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0.5rem 0 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
          perspective: inherit;
  z-index: 2;
}

.item-card .ic-front, .item-card .ic-back {
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-align: center;
  min-height: 250px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.item-card .ic-front {
  color: #406142;
  background: url(../assets/img/items/cpu.svg);
  background-size: contain;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.item-card .ic-front .inner {
  padding: 2rem;
}

.item-card .ic-front .inner span {
  font-family: 'Montserrat';
  font-weight: 300;
  padding-right: 0.6rem;
}

.item-card .ic-front .inner p {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-right: 0.6rem;
  position: relative;
}

.item-card .ic-front .inner p:after {
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #406142;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-right: 0.6rem;
  bottom: -.75rem;
}

.item-card .ic-front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: .0;
  background-color: #000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 10px;
}

.item-card .ic-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*background: linear-gradient(45deg,  #7aa57d 0%,#406142 100%); */
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  background: url(../assets/img/items/cpu-back.svg);
  background-size: contain;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.item-card .ic-back .inner {
  padding: 0.5rem 0 0.5rem 1.5rem;
}

footer .footer {
  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;
  width: 100%;
  height: 25rem;
  color: #c8cacc;
  background-color: #232d35;
  padding: .5rem 1rem;
}

footer .footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 50%;
  height: 95%;
  color: #c8cacc;
}

footer .footer__sitemap {
  text-align: center;
}

footer .footer__sitemap .logo {
  width: 100%;
  margin-bottom: 2rem;
}

footer .footer__sitemap .logo img {
  width: 5rem;
  height: auto;
}

footer .footer__sitemap .li-main {
  text-align: center;
  padding-bottom: .5rem;
  text-transform: uppercase;
}

footer .footer__sitemap .li-main:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: '';
  padding-bottom: 0.1rem;
  border-bottom: solid 2px #c8cacc;
  margin: 0 auto;
  width: 100%;
}

footer .footer__sitemap li {
  list-style: none;
  text-align: center;
  font-size: 1.1rem;
}

footer .footer__sitemap li a {
  text-decoration: none;
  color: #c8cacc;
  -webkit-transition: color ease .3s;
  transition: color ease .3s;
}

footer .footer__sitemap li a:hover {
  color: #f2f2f2;
}

footer .footer__devider {
  height: 100%;
  width: .1rem;
  border-left: 1px solid rgba(200, 202, 204, 0.1);
  margin: 0 1rem;
}

footer .footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}

footer .footer__info .about-firm p {
  margin: 0;
}

footer .footer__info .about-firm .phone, footer .footer__info .about-firm .email {
  text-decoration: none;
  color: #c8cacc;
}

footer .footer__info .about-firm .fas {
  padding-right: .5rem;
}

footer .footer__info .hours-work p {
  margin: 0;
}

footer .footer__info .follow-us p {
  margin-bottom: 0;
}

footer .footer__info .follow-us .fab {
  cursor: pointer;
  margin-right: 1rem;
  font-size: 1.5rem;
  -webkit-transition: color ease .3s;
  transition: color ease .3s;
}

footer .footer__info .follow-us .fab:hover {
  color: #4a76a8;
}

footer .footer__map {
  width: 40%;
  height: 95%;
  -webkit-transition: opacity ease .5s;
  transition: opacity ease .5s;
  opacity: .6;
}

footer .footer__map:hover {
  opacity: 1;
}

footer .footer-botton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 3rem;
  color: #a3a3a3;
  background-color: #131b21;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

footer .footer-botton p {
  margin: 0;
}

.modal-body p {
  margin: 0;
}

.modal-content {
  background-color: #232d35;
  color: #f5f5f5;
}

.modal-content .close {
  color: #f5f5f5;
}

.modal-content .modal-header, .modal-content .modal-footer {
  border-color: #353e44;
}

/* Media query */
@media (max-width: 1440px) {
  .footer {
    max-height: 20rem;
  }
}

/*Preloader*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #232d35;
  z-index: 99;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
  visibility: visible;
}

.preloader-done {
  opacity: 0;
  visibility: hidden;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #c4c4c4;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 99;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #afafaf;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #777777;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.contacts {
  display: inline-block;
}

.contacts-left {
  width: 50%;
  float: left;
}

.contacts-left .fas {
  padding-right: .5rem;
}

.contacts-left a {
  text-decoration: none;
  color: black;
  -webkit-transition: color .5s;
  transition: color .5s;
}

.contacts-left a:hover {
  color: #53995b;
}

.contacts-left .fab {
  cursor: pointer;
  font-size: 1.5rem;
  margin-right: 2rem;
  -webkit-transition: color .5s;
  transition: color .5s;
}

.contacts-left .fab:hover {
  color: #4a76a8;
}

.contacts-right {
  width: 50%;
  float: right;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__form {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contacts__form input {
  margin-bottom: 1rem;
  padding: .5rem 1rem;
}

.contacts__form input:focus {
  outline-color: #53995b;
}

.contacts__form textarea:focus {
  outline-color: #53995b;
}

.contacts__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}

.owl-theme .item {
  background-color: grey;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.owl-theme .item img {
  height: 100%;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  opacity: .6;
}

.owl-theme .item img:hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
