* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

:root {
  --var-brand-color: #ec3237;
  --gray-text-color: #424242;
}

.main-app {
  background-color: #ffffff;
}

.main-app .container {
  max-width: 1024px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .main-app .container {
    padding: 0 15px;
  }
}

.main-app .header {
  height: 84px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 500px) {
  .main-app .header {
    height: 60px;
  }
}

.main-app .header header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 84px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

.main-app .header header a{
    text-decoration: none;
    display: flex;
    background: #e22e34;
    line-height: 1;
    padding: 7px 15px;
    border-radius: 20px;
    align-items: center;
    color: white;
    font-size: 12px;
}

@media (max-width: 500px) {
  .main-app .header header {
    height: 60px;
  }
}

.main-app .header header img {
  height: 70px;
}

@media (max-width: 500px) {
  .main-app .header header img {
    height: 50px;
  }
}

.main-app .banners {
  margin-top: 10px;
  border-bottom: 1px solid #c2bebe;
}

.main-app .banners img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 500px) {
  .main-app .banners img {
    max-width: auto;
    height: 135px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.main-app .content h4 {
  font-size: 22px;
  color: var(--var-brand-color);
  margin: 15px 0;
  font-weight: 400;
}

@media (max-width: 500px) {
  .main-app .content h4 {
    font-size: 18px;
  }
}

.main-app .content h4.white {
  color: #fff;
  text-align: center;
}

.main-app .content p {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--gray-text-color);
}

.main-app .content p span {
  color: var(--var-brand-color);
}

.main-app .content .services {
  padding: 15px 0;
  background: url("images/services_bg.jpg") no-repeat center/cover;
}

.main-app .content .services .services-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}

@media (max-width: 500px) {
  .main-app .content .services .services-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.main-app .content .services .services-container .service {
  color: #fff;
  text-align: center;
}

.main-app .content .services .services-container .service img {
  height: 60px;
  margin-bottom: 15px;
}

.main-app .content .vision-mission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-app .content .vision-mission .vision-item {
  width: 30%;
  font-size: 14px;
}

@media (max-width: 500px) {
  .main-app .content .vision-mission {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-app .content .vision-mission .vision-item {
    width: 100%;
  }
}

.main-app .content .product-range {
  margin: 15px 0;
}

.main-app .content .product-range .product-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-app .content .product-range .product-container .product {
  width: 226px;
  height: 226px;
  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;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

@media (max-width: 500px) {
  .main-app .content .product-range .product-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-app .content .product-range .product-container .product {
    width: 140px;
    height: 140px;
  }
  .main-app .content .product-range .product-container .product img {
    width: 60%;
  }
}

.main-app footer {
  background: #424242;
  padding: 15px 0;
  margin-top: 30px;
}

.main-app footer h3 {
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  color: #fff;
}

.main-app footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 15px 0;
}

@media (max-width: 500px) {
  .main-app footer .footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.main-app footer .footer .map {
  overflow: hidden;
  border-radius: 10px;
}

.main-app footer .footer .map img {
  height: 100%;
}

.main-app footer .footer .address-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.main-app footer .footer .address-container .addr {
  width: 30%;
  height: 200px;
}

@media (max-width: 500px) {
  .main-app footer .footer .address-container .addr {
    width: 100%;
  }
}

.main-app footer .footer .address-container .contact {
  width: 100%;
  background: #323131;
  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;
  padding: 20px 0;
}

.main-app footer .footer .address-container .contact a {
  font-size: 20px;
  color: #fff;
}

.main-app footer .footer p {
  margin-top: 30px;
  color: #fff;
}

.main-app .copywrite {
  background: #323131;
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */