@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;
}

/* Counters */

.counts {
  background-color: #f5f5f5;
}

.counter {
  width: 100%;
  background-color: var(--white);
  padding: 20px 30px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.counter::before {
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  content: "";
}

.counter h3 {
  color: var(--black);
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  line-height: 60px;
}

.counter p {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  color: var(--black);
}

/* Key Features */

.key-features {
  background-image: url(../images/key-features-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0;
}

.key-features-div img {
  width: 64px;
  margin-bottom: 15px;
}

.key-features-div p {
  width: 100%;
  font-size: 18px;
  font-family: var(--fonts);
  color: var(--black);
  font-weight: 400;
}

/* how we work */

.how-work-div {
  width: 100%;
  padding: 60px 50px 20px 50px;
  position: relative;
  /* overflow: hidden; */
}

.how-work-div h3 {
  color: var(--black);
  font-family: var(--fonts) !important;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
}

.how-work-div p {
  color: var(--black);
  font-family: var(--fonts);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}

.how-work-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  background-color: var(--primary);
  border-radius: 54px;
  line-height: 54px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  z-index: 1;
}

.orange-line {
  position: absolute;
  width: calc(100% - 27px);
  height: 1px;
  background-color: var(--primary);
  top: 27px;
}

.gray-line {
  position: absolute;
  width: 1px;
  height: 90px;
  background-color: #d9d9d9;
  top: 27px;
  left: 27px;
}

.blue-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  background-color: #24589d;
  border-radius: 11px;
  top: 112px;
  left: 22px;
}

/* product category */

.product-cat {
  overflow: hidden;
  background-color: #f5f5f5;
}

.product-category-swiper {
  padding-bottom: 50px;
  width: 100%;
  overflow: visible;
}

.product-cat-div {
  width: 100%;
  background-color: var(--secondary);
  padding: 15px;
  border-radius: 20px;
}

.product-cat-img {
  width: 100%;
  height: 310px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  margin-bottom: 15px;
}

.product-cat-div .product-cat-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.2);
  z-index: 1;
  transition: all 0.4s;
}

.product-cat-div .product-cat-img:hover .overlay {
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}

.product-cat-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%);
}

.product-cat-div h5 {
  color: var(--white);
  font-size: 24px;
  font-family: var(--fonts) !important;
  font-weight: 700;
  height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.product-cat-div h6 {
  color: var(--primary);
  font-size: 16px;
  font-family: var(--fonts) !important;
  font-weight: 600;
  transition: all 0.3s;
}

.product-cat-div:hover h6 {
  color: var(--white);
  transition: all 0.3s;
}

.m-panel {
  position: relative;
  z-index: 100;
}

/* 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;
  }
}

@media only screen and (max-width: 992px) {
  .how-work-div {
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
}

@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) {
}
