body {
  background-color: #f6f6f6;
  font-family: tahoma;
  font-size: 16px;
}

.header {
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid #b8b5b5;
}

.header .logo h1 {
  margin-bottom: 3px;
}

.header .logo p {
  margin-bottom: 0;
  font-size: 12px;
  color: #b8b5b5;
}

.header .navbar {
  background-color: #e2494c;
  border-radius: 10px;
  margin-top: 10px;
  text-transform: capitalize;
}

.header .navbar li a {
  text-decoration: none;
  color: #fff;
}

.header .navbar li a:hover {
  color: #b8b5b5;
}

.slider {
  text-align: center;
  padding: 3%;
}

.slider q {
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #b8b5b5;
}

.slider img {
  max-width: 100%;
  margin: 20px auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.slider .bullets {
  text-align: center;
  margin: 0;
  padding: 0;
}

.slider .bullets li {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #b8b5b5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid #b8b5b5;
}

.slider .bullets li.active {
  border: 3px solid #333;
  background-color: #fff;
}

.services .head-title {
  position: relative;
}

.services .head-title h3 {
  text-align: center;
  background-color: #e2494c;
  color: #fff;
  margin: 5px auto 40px auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 300px;
  padding: 10px 15px;
  text-transform: capitalize;
}

.services .head-title h3::before {
  content: '';
  width: 100%;
  height: 1.5px;
  background-color: #b8b5b5;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}

.services .services-contant {
  margin-bottom: 5%;
}

.services .services-contant .services-head {
  color: #333;
  text-transform: capitalize;
}

.services .services-contant p {
  color: #b8b5b5;
}

.services .services-contant a {
  text-decoration: none;
  color: #e2494c;
  text-transform: capitalize;
}

.services .services-contant img {
  max-width: 100%;
  margin-bottom: 10px;
}

.footer {
  background-color: #b8b5b5;
  padding: 5% 0;
}

.footer h3 {
  color: #333;
  text-transform: capitalize;
  margin-bottom: 5%;
}

.footer .blog img {
  max-width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.footer .blog p {
  color: #fff;
}

.product {
  background-color: #eee;
  padding: 10px;
  border: 1px solid #ccc;
  width: 300px;
  height: 150px;
  position: relative;
  -webkit-animation: fadeInOut 2s infinite linear;
  animation: fadeInOut 2s infinite linear;
  -webkit-box-shadow: 10px 10px 10px #ccc;
  -o-box-shadow: 10px 10px 10px #ccc;
  box-shadow: 10px 10px 10px #ccc;
}

.product .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(226, 73, 76, 0.4);
  color: #fff;
}

@keyframes fadeInOut {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/*# sourceMappingURL=style.css.map */