@charset "utf-8";

/* CSS Document */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

:root {
  --primary: #e8703c !important;
  --secondary: #1b447a !important;
  --white: #ffffff !important;
  --black: #666666 !important;
  --font-title: "Exo", sans-serif !important;
  --fonts: "Roboto", sans-serif !important;
}

/* product category */

.product-div {
  width: 100%;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
}

.product-img {
  width: 100%;
  height: 310px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  margin-bottom: 15px;
  border: 1px solid #d9d9d9;
}

.product-div .product-img .overlay {
  width: 0%;
  height: 0%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: all 0.2s;
}

.product-div:hover .product-img .overlay {
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}

.product-img img {
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.product-img .img-2 {
  /* display: none; */
  width: 0;
  height: 0;
  transition: all 0.3s;
}

.product-div:hover .product-img .img-1 {
  width: 0;
  height: 0;
  transition: all 0.3s;
}

.product-div:hover .product-img .img-2 {
  width: auto;
  height: auto;
  transition: all 0.3s;
}

.product-div h5 {
  color: var(--black);
  font-size: 24px;
  font-family: var(--fonts) !important;
  font-weight: 700;
  height: 58px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-div p {
  color: var(--black);
  font-size: 16px;
  font-family: var(--fonts) !important;
  font-weight: 400;
  transition: all 0.3s;
  margin-bottom: 5px;
}

.product-div ul {
  margin: 20px 0;
  padding: 0 0 0 15px;
}

.product-div ul li {
  font-size: 16px;
  color: var(--black);
}

.product-div .view-product {
  color: var(--primary);
  font-size: 16px;
  font-family: var(--fonts) !important;
  font-weight: 600;
  transition: all 0.3s;
  line-height: 46px;
}

.product-div .view-product:hover {
  color: var(--secondary);
  transition: all 0.3s;
}

.brnad-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  width: 100%;
  height: 37px;
  text-align: right;
}

.brnad-icon img {
  position: relative;
  transform: none;
  top: unset;
  left: unset;
  height: auto;
  width: 57px;
  max-height: unset;
}

/* Filter */

.m-accordions {
  background-color: var(--white) !important;
  z-index: 1;
  cursor: pointer;
}

.filter-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 25px;
}

.select {
  width: 100%;
  position: relative;
}

.select .click {
}

.select .click a {
  display: block;
  /* border: 1px solid #999999; */
  background-color: #f5f5f5;
  padding: 0 12px 0 12px;
  position: relative;
  line-height: 44px;
  font-size: 16px;
  color: var(--black);
  border-radius: 10px;
  font-weight: 500;
  border: 1px solid #d9d9d9;
}

.select .click a:after {
  width: 14px;
  height: 8px;
  background: url(../images/down-arrow-orange.png) no-repeat;
  content: " ";
  position: absolute;
  right: 13px;
  top: 50%;
  margin-top: -3px;
  transition: 0.6s;
}

.select.open .click a:after {
  transform: rotate(180deg);
}

.select .click_detail {
  position: absolute !important;
  left: 0;
  top: 100%;
  width: 100%;
  background: #eaeaea;
  padding: 20px 12px;
  display: none;
  z-index: 10 !important;
}

.select .click_detail .check-radio {
}

.select .click_detail .check-radio + .check-radio {
  margin-top: 18px;
}

.check-radio {
  text-align: left;
  font-size: 14px;
  color: var(--black);
}

.check-radio input[type="radio"],
.check-radio input[type="checkbox"] {
  display: none;
}

.check-radio label {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.check-radio label span {
  padding: 0 0 0 28px;
  min-height: 18px;
  display: inline-block;
  position: relative;
}

/* Base styles for spans */

.check-radio span::before,
.check-radio span::after {
  content: "";
  position: absolute;
  margin: auto;
}

/* Check-boxes */

.check-radio span.checkbox {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  line-height: 24px;
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}

.check-radio span.checkbox i {
  font-style: normal;
  color: #999;
}

.check-radio span.checkbox:before {
  width: 22px;
  height: 22px;
  background: url(../images/uncheck.png) no-repeat;
  left: 0;
  top: 1px;
}

.check-radio input[type="checkbox"]:checked + label span.checkbox:before {
  background: url(../images/checked.png) no-repeat;
}

.tag {
  color: var(--black);
  /* background: linear-gradient(180deg, rgba(233, 83, 58, 1) 0%, rgba(234, 111, 58, 1) 100%); */
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 12px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  margin-bottom: 5px;
}

.tag:hover {
  background-color: #f5f5f5;
}

.tag a {
  color: var(--black);
  transition: color 0.3s;
}

.tag a:hover {
  color: var(--primary);
  transition: color 0.3s;
}

/* responsive */

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 1100px) {
  .counter {
    padding: 10px 20px;
    height: 100%;
  }
  .counter h3 {
    font-size: 36px;
    line-height: 48px;
  }
  .counter p {
    font-size: 14px;
    line-height: 18px;
  }
  .key-features-div img {
    width: 50px;
  }
  .key-features-div p {
    font-size: 14px;
  }
  .how-work-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    z-index: 1;
  }
  .orange-line {
    position: absolute;
    width: calc(100% - 16px);
    height: 1px;
    background-color: var(--primary);
    top: 20px;
    left: 40px;
  }
  .gray-line {
    position: absolute;
    width: 1px;
    height: 90px;
    background-color: var(--black);
    top: 27px;
    left: 20px;
  }
  .blue-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    background-color: #24589d;
    border-radius: 11px;
    top: 112px;
    left: 15px;
  }
  .product-div p,
  .product-div ul li,
  .product-div .view-product {
    font-size: 14px;
  }
  .product-div h5 {
    font-size: 18px;
    height: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .how-work-div {
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .m-panel {
    height: 0px !important;
    transition:
      visibility 0.3s,
      opacity 0s;
    margin-bottom: 0px;
    visibility: hidden;
    opacity: 0;
  }
  .m-panel.show {
    height: auto !important;
    transition:
      visibility 0.3s,
      opacity 0.5s;
    visibility: visible;
    margin-top: 15px;
    opacity: 1;
    z-index: 10000;
  }
}

@media only screen and (max-width: 640px) {
  .key-features-div {
    text-align: center;
  }
  .key-features-div img {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 600px) {
}

@media only screen and (max-width: 568px) {
}

@media only screen and (max-width: 480px) {
}

@media only screen and (max-width: 360px) {
}
