@import url("https://fonts.googleapis.com/css2?family=Merriweather&family=Muli&display=swap");

:root {
  --fs-body: 1.8rem;
  --fs-h2: 4rem;
  --fs-h4: 2.4rem;
  --fs-h5: 1.8rem;
  --clr-head: hsla(208, 11%, 15%, 1);
  --clr-body: hsla(208, 9%, 31%, 0.8);
  --clr-accent: hsla(216, 97%, 61%, 1);
  box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  font-size: 72.5%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-body);
  line-height: 1.8;
  font-weight: normal;
}

/* navbar */
.navbar {
  position: fixed;
  top: -70px;
  /* Set this value to the height of your navbar */
  width: 100%;
  transition: top 0.5s ease-in-out;
  animation: slideDown 0.5s ease-in-out forwards;
  /* Animation for smoother transition */
}

.navbar.show {
  top: 0;
}

@keyframes slideDown {
  from {
    top: -70px;
    /* Set this value to the height of your navbar */
  }

  to {
    top: 0;
  }
}

.navbar-nav a.active {
  position: relative;
  text-decoration: none;
  /* Remove default underline */
  color: #007bff !important;
  /* Set the color of the active link */
}

.navbar-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  /* Adjust the distance from the text */
  left: 0;
  width: 100%;
  height: 5px;
  /* Adjust the height of the line */
  background-color: #007bff;
  /* Set the color of the line */
  border-radius: 5px;
  /* Adjust the corner radius */
}

.navbar-nav .nav-link {
  color: black !important;
  font-size: 20px;
  /* You can adjust the value to set the desired font size */
}

.navbar-nav .nav-item {
  margin-right: 20px;
  /* Adjust the value to set the desired margin */
}

.nav-link.dropdown-toggle::after {
  content: none;
  /* This hides the default arrow icon */
}

.big-font {
  font-size: 20px;
}

/* navbar */

/* search bar */
.search-container {
  overflow: hidden;
  float: none;
  height: 4em;
  width: 4em;
  border-radius: 2em;
  -moz-transition: all 0.35s;
  -webkit-transition: all 0.35s;
  margin-right: auto;
  /* Align to the left */
}

.search-container:hover,
.search-container:focus,
.search-container:focus-within {
  width: 25em;
  border-radius: 5px 2em 2em 5px;
  outline: none;
}

.search-container:hover input,
.search-container:focus input,
.search-container:focus-within input {
  display: inline-block;
  width: 19em;
}

input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  float: left;
  width: 0em;
  height: 2.5em;
  margin: 1em;
  margin-right: -4.5em;
  background: #fff;
  color: #000000;
  font-size: 1em;
  font-weight: 600;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  -moz-transition: all 0.25s;
  -webkit-transition: all 0.25s;
}

input:focus {
  outline: none;
  box-shadow: 0 -1px 1px rgba(255, 255, 255, 0.25),
    0 1px 5px rgba(0, 0, 0, 0.15);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  width: 1.75em;
  /* Change this to your desired size */
  height: 1.75em;
  /* Change this to your desired size */
  margin: 0.125em;

  text-align: center;
  font-size: 2em;

  position: relative;
  /* Add this line */
}

.button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button:active {
  border: 0 !important;
  text-shadow: 0 0 0;
}

@media (max-width: 991.98px) {
  .search-container {
    display: none;
  }
}

/* search bar */

/* carousel */

#myCarousel {
  position: relative;
  z-index: 1;
  background: url("./static/img/Untitled\ design\ \(14\).png") center center
    no-repeat;
  background-size: cover;
  height: 750px;
  /* Increase this value for a taller carousel */
}

.carousel-item.active {
  display: block;
  /* or display: flex; */
}

#myCarousel .carousel-item .mask {
  position: absolute;
  top: 10%;
  /* Adjust the value to leave space on top */
  left: 0;
  width: 100%;
  background-attachment: fixed;
}

#myCarousel .carousel-item.active .mask {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Default styles */
#myCarousel h4 {
  font-size: 20px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  #myCarousel h4 {
    font-size: 13px;
    /* Adjust font size for smaller screens */
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #myCarousel h4 {
    font-size: 12px;
    /* Adjust font size for tablets in landscape mode */
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #myCarousel h4 {
    font-size: 18px;
    /* Adjust font size for small desktop screens */
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  #myCarousel h4 {
    font-size: 25px;
    /* Revert to default font size for large desktop screens */
  }
}

/* Default styles */
#myCarousel h5 {
  font-size: 14px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  #myCarousel h5 {
    font-size: 10px;
    /* Adjust font size for smaller screens */
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #myCarousel h5 {
    font-size: 11px;
    /* Adjust font size for tablets in landscape mode */
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #myCarousel h5 {
    font-size: 12px;
    /* Adjust font size for small desktop screens */
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  #myCarousel h5 {
    font-size: 14px;
    word-break: break-all;
    /* Revert to default font size for large desktop screens */
  }
}

/* Default styles */
#myCarousel p {
  font-size: 18px;
  color: #d5d5d5;
  text-align: justify;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  #myCarousel p {
    font-size: 12px;
    /* Adjust font size for smaller screens */
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #myCarousel p {
    font-size: 15px;
    /* Adjust font size for tablets in landscape mode */
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #myCarousel p {
    font-size: 16px;
    /* Adjust font size for small desktop screens */
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  #myCarousel p {
    font-size: 18px;
    /* Revert to default font size for large desktop screens */
  }
}

@media (max-width: 767.98px) {
  .smart-specification {
    margin-top: 50px;
  }

  .smart {
    margin-top: 70px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .smart-specification {
    margin-top: 50px;
  }

  .smart {
    margin-top: 70px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .smart-specification {
    margin-top: 50px;
  }

  .smart {
    margin-top: 70px;
  }
}

/* Default styles */
#myCarousel h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  #myCarousel h2 {
    font-size: 20px;
    /* Adjust font size for smaller screens */
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #myCarousel h2 {
    font-size: 28px;
    /* Adjust font size for tablets in landscape mode */
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #myCarousel h2 {
    font-size: 35px;
    /* Adjust font size for small desktop screens */
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  #myCarousel h2 {
    font-size: 40px;
    /* Revert to default font size for large desktop screens */
  }
}

/* Default styles */
#spec {
  height: 50px;
  width: 50px;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  #spec {
    height: 18px;
    /* Adjust height for smaller screens */
    width: 18px;
    /* Adjust width for smaller screens */
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #spec {
    height: 20px;
    /* Adjust height for tablets in landscape mode */
    width: 20px;
    /* Adjust width for tablets in landscape mode */
  }

  #myCarousel .carousel-item a {
    font-size: 12px;
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #spec {
    height: 28px;
    /* Adjust height for small desktop screens */
    width: 28px;
    /* Adjust width for small desktop screens */
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  #spec {
    height: 30px;
    /* Revert to default height for large desktop screens */
    width: 30px;
    /* Revert to default width for large desktop screens */
  }
}

#myCarousel .carousel-item a {
  background: #5f5dff;
  font-size: 14px;
  color: #fff;
  padding: 13px 32px;
  display: inline-block;
}

#myCarousel .carousel-item a:hover {
  background: #394fa2;
  text-decoration: none;
}

#myCarousel .carousel-item h4 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

#myCarousel .carousel-item p {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

#myCarousel .carousel-item a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#myCarousel .carousel-item .mask img {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  display: block;
  height: auto;
  max-width: 100%;
}

#myCarousel h4,
#myCarousel p,
#myCarousel a,
#myCarousel .carousel-item .mask img {
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#myCarousel .container {
  max-width: 1430px;
}

#myCarousel .carousel-item {
  height: 100%;
  min-height: 850px;
}

#myCarousel {
  position: relative;
  z-index: 1;
  background: url("../img/Untitled\ design\ \(14\).png") center center no-repeat;
  background-size: cover;
}

.carousel-control-next,
.carousel-control-prev {
  height: 40px;
  width: 40px;
  padding: 12px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-right.active {
  opacity: 0;
}

.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item-prev.active,
.carousel-fade .carousel-item.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-left.active,
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item-prev.active,
  .carousel-fade .carousel-item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item-prev.active,
.carousel-fade .carousel-item.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.custom-border {
  border: 1px solid #ced4da;
  border-radius: 10px;
}

.specification {
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.specification h5 {
  margin-left: 8px;
  /* Adjust margin as needed */
}

.specification img {
  width: 40px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */
}

.specification {
  text-align: center;
}

.circle {
  width: 80px;
  /* Adjust size of circle */
  height: 80px;
  /* Adjust size of circle */
  border: 5px solid white;
  /* White stroke */
  border-radius: 50%;
  /* Make it circular */
  overflow: hidden;
  /* Hide overflow from image */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  /* Center horizontally */
}

.circle img {
  max-width: 100%;
  /* Make image fit inside circle */
  max-height: 100%;
  /* Make image fit inside circle */
  display: block;
  /* Remove extra space below image */
}

/* about */

.about-container {
  padding: 50px 0;
  background-color: #ffffff;
  /* Light background color */
}

.about-section {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  /* Card background color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Add shadow */
  font-size: 13px;
}

.about-icon {
  font-size: 40px;
  color: #007bff;
  /* Icon color */
  margin-bottom: 10px;
}

/* about */

/* category */

.image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 20;
  box-shadow: 10px 10px 53px 0px rgba(0, 0, 0, 0.49);
}

.card1-wrapper {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;

  &:hover {
    .image {
      filter: blur(1.4px);
      transform: scale(1.5);
      overflow: hidden;
      transition: all 0.3s linear;
      box-shadow: inset -6px -1px 32px 0px rgba(0, 0, 0, 0.75);
    }

    .card1-bottom {
      transform: translate(0%, -50%);
      transition: all 0.8s ease;
      background-color: rgba(136, 136, 136, 0.7);
    }
  }

  box-shadow: 10px 10px 53px 0px rgba(0, 0, 0, 0.49);
}

.card1-top {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card1-bottom {
  width: 100%;
  position: absolute;
  z-index: 20;
  display: none;
  top: 50%;
  background-color: rgba(199, 199, 199, 0);
  padding: 100px 20px;
  color: #ffffff;
  transform: translate(100%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center the content horizontally */
  text-align: center;
  /* Center the text horizontally */
}

.top-text {
  font-size: 25px;
  line-height: 40px;
  font-weight: bold;
  letter-spacing: 1px;
}

.bottom-text {
  font-size: 10px;
}

.button1 {
  position: relative;
  display: inline-block;
  /* Use inline-block to cover full width */
  outline: none;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  background-color: #1ec5f8;
  color: #ffffff;
  padding: 10px 20px;
  /* Adjust padding for better coverage */
  width: auto;
  /* Remove fixed width to cover full width */
}

/* category */

/* product carousel  */

/* styles.css */
.btn-share {
  background: none;
  border: none;
  padding: 0;
}

.btn-share:focus {
  outline: none;
}

.carousel .carousel-item {
  text-align: center;
  overflow: hidden;
}

.carousel .carousel-item h4 {
  font-family: "Varela Round", sans-serif;
}

.carousel .carousel-item img {
  max-width: 100%;
  display: inline-block;
}

.carousel .carousel-item .btn {
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  background: #1467ff;
  padding: 10px 15px;
  margin-top: 5px;
}

.carousel .carousel-item .btn:hover {
  background: #4487fa;
}

.carousel .carousel-item .btn i {
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
}

.carousel .thumb-wrapper {
  margin: 5px;
  text-align: left;
  background: #fff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.carousel .thumb-content {
  padding: 15px;
  font-size: 13px;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators li,
.carousel-indicators li.active {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 4px;
  border: none;
}

.carousel-indicators li {
  background: #ababab;
}

.carousel-indicators li.active {
  background: #555;
}

.custom-btn {
  border-radius: 5px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  background: #1467ff;
  color: #fff;
  padding: 10px 15px;
  margin-top: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #00bd2a;
  color: white;
}

/* footer */

.footer {
  background-color: #272727;
  /* Dark background color */
  color: #ffffff;
  /* Light text color */
  padding: 20px 0;
  text-align: center;
}

.underline-rounded::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  /* Adjust the height of the line */
  background-color: #7c4dff;
  /* Change the color as needed */
  border-radius: 10px;
  /* Adjust the radius to make the corners rounded */
  margin-top: 8px;
  /* Adjust the margin to control the space between text and line */
}

.col-md-3 a.text-reset:hover {
  color: #7c4dff;
  /* Change the color as needed */
  font-weight: bold;
  text-decoration: underline;
  /* Optional: Add underline effect on hover */
}

.col-md-2 a.text-reset:hover {
  color: #7c4dff;
  /* Change the color as needed */
  font-weight: bold;
  text-decoration: underline;
  /* Optional: Add underline effect on hover */
}

/* produt carousel */

.thumb-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  /* Add a smooth transition effect */
}

.img-box {
  position: relative;
}

.img-box img {
  transition: filter 0.3s ease-in-out;
}

.img-box:hover img {
  filter: blur(3px);
  /* Adjust the blur intensity as needed */
}

.details-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border-radius: 5px;
  display: none;
}

.img-box:hover .details-button {
  display: block;
}

.thumb-wrapper:hover {
  transform: scale(1.05);
  /* Adjust the scale factor as needed */
  cursor: pointer;
}

/* about us */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2c3145;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section_all {
  margin-top: 50px;
  /* You can adjust this value as needed */
}

.section-title {
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-subtitle {
  letter-spacing: 0.4px;
  line-height: 28px;
  max-width: 550px;
}

.section-title-border {
  background-color: #000;
  height: 1 3px;
  width: 44px;
}

.section-title-border-white {
  background-color: #fff;
  height: 2px;
  width: 100px;
}

.text_custom {
  color: #00bd2a;
}

.text_custom1 {
  color: #313131;
}

.about_icon i {
  font-size: 22px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  display: inline-block;
  background: #fff;
  border-radius: 35px;
  color: #00bd2a;
  box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
  font-size: 20px;
}

.about_icon span {
  position: relative;
  top: -10px;
}

.about_content_box_all {
  padding: 28px;
}

/* about us  */

.main {
  padding: 1em 0;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.inner__sub {
  --fs-h5: 1.5rem;
  font-size: var(--fs-h5);
  color: var(--clr-head);
  margin-bottom: 1em;
}

.inner__head {
  --fs-h2: 3rem;
  font-size: var(--fs-h2);
  font-family: var(--ff-head);
  color: var(--clr-head);
  line-height: 1.4;
  margin-bottom: 1em;
}

.inner__content {
  margin-bottom: 3em;
}

.inner__clr {
  color: #3b88fc;
}

.inner__text {
  text-align: left;
}

/*====== cards style ==========*/
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 4em 2rem;
}

.card2 {
  border-radius: 6px;
  box-shadow: 0 20px 40px 0 rgba(173, 181, 189, 0.1);
  border: solid 1px rgba(129, 147, 174, 0.12);
  background-color: #fff;
  padding: 2.5em;
  text-align: center;
  position: relative;
}

.card2:first-child::before {
  content: "";
  position: absolute;
  background-color: #ffd25f;
  top: -8px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  border-radius: 6px 6px 0 0;
}

.card2:nth-child(2)::before {
  content: "";
  position: absolute;
  background-color: #63a2ff;
  top: -8px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  border-radius: 6px 6px 0 0;
}

.card2:last-child::before {
  content: "";
  position: absolute;
  background-color: #5ed291;
  top: -8px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  border-radius: 6px 6px 0 0;
}

.card2__body {
  padding-top: 1em;
}

.card2__head {
  --fs-h4: 2rem;
  font-size: var(--fs-h4);
  margin-bottom: 1em;
  color: var(--clr-head);
}

.card2__content {
  --fs-body: 1.6rem;
  font-size: var(--fs-body);
}

@media (min-width: 750px) {
  .inner {
    padding: 1em 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }

  .inner__sub {
    --fs-h5: 1.8rem;
    font-size: var(--fs-h5);
  }

  .inner__headings {
    flex: 1 0 30%;
  }

  .inner__content {
    flex: 1 0 50%;
    align-self: center;
    margin-left: 2rem;
  }

  .inner__sub {
    margin-bottom: 0;
  }

  .inner__head {
    --fs-h2: 4rem;
  }
}

#carouselExample .carousel-item {
  position: relative;
}

#carouselVideo {
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  text-align: center;
  width: 100%;
}

.overlay button {
  font-size: 24px;
  padding: 10px 20px;
}

/* our services section  */

section {
  padding: 60px 0;
  /* min-height: 100vh;*/
}

.section-padding {
  padding: 120px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  line-height: 45px;
  position: relative;
  margin-bottom: 20px;
  color: #333333;
  text-transform: capitalize;
}

.services-area {
  margin-bottom: -30px;
}

.serviecs-block .single-serviecs-block {
  margin: 30px 0;
}

.single-serviecs-block {
  padding: 30px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: block;
  height: 320px;
  margin-bottom: 30px;
}

.single-serviecs-block:hover {
  background: #5ed291;
  color: #fff;
}

.single-serviecs-block:hover h3 a {
  color: #fff;
  margin-top: 180px;
}

.single-serviecs-block:hover p {
  display: none;
}

.single-serviecs-block:hover i {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
  background: #fff;
  color: #5ed291;
  height: 100px;
  width: 100px;
  font-size: 30px;
  line-height: 100px;
}

.single-serviecs-block h3 a {
  color: #333333;
  margin-bottom: 15px;
  margin-top: 80px;
  display: block;
  overflow: hidden;
  transition: 0.5s;
}

.single-serviecs-block i {
  color: #fff;
  font-size: 50px;
  height: 140px;
  width: 140px;
  line-height: 170px;
  text-align: center;
  background: #5ed291;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.6s;
}

.para {
  font-size: 15px;
}

/* more.html section */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

.service-section .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  /* Adjust the border radius as needed */
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Add shadow */
}

.service-section .icon-box:hover .service-title a {
  color: #41a1fd;
}

.service-section .icon-box .service-icon {
  float: left;
  color: #41a1fd;
  font-size: 40px;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  .service-icon {
    height: 30px;
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-icon {
    height: 30px;
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .custom-service-title {
    font-size: 16px;
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  .custom-service-title {
    font-size: 16px;
  }
}

.service-section .icon-box .service-title {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.2;
}

.service-section .icon-box .service-title a {
  color: #556270;
  transition: 0.3s;
  text-decoration: none;
}

.service-section .icon-box .service-para {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.service-section .service-main-heading {
  color: #556270;
  padding: 0;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 50px;
  font-weight: 600;
}

/* contact section  */

.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.contact-info-icon {
  margin-bottom: 15px;
}

.contact-info-item {
  background: #ffffff;
  padding: 30px 0px;
  border: 2px solid #ffd25f;
  /* Add border */
  border-radius: 4px;
  /* Add border radius for rounded corners */
  transition: transform 0.3s ease-in-out;
  /* Add transition for smooth scaling */
}

.contact-info-item:hover {
  transform: scale(1.05);
  /* Scale the element by 5% when hovered */
}

.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}

.contact-page-form.contact-form input {
  margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
  height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}

.contact-info-icon i {
  font-size: 48px;
  color: #5ed291;
}

.contact-info-text p {
  margin-bottom: 0px;
}

.contact-info-text h2 {
  color: #252525;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-text span {
  color: #999999;
  font-size: 16px;
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}

.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 125px;
  padding: 12px 16px;
  border-radius: 4px;
}

.single-input-fieldsbtn {
  text-align: center;
  /* Center-align the button horizontally */
}

.single-input-fieldsbtn input[type="submit"] {
  background: #007bff none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 0px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
  border: none;
  /* Remove default button border */
  cursor: pointer;
  /* Change cursor to pointer on hover */
}

.single-input-fieldsbtn input[type="submit"]:hover {
  background: #5ed291;
  transition: all 0.4s ease-in-out 0s;
}

.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}

.contact-page-form form {
  padding: 20px 15px 0;
}

/* all device */

.smart-plug-title {
  font-weight: 600;
  font-size: 50px;
}

.plug-color {
  color: #00bd2a;
}

.plug-description {
  line-height: 1.5;
  font-size: 18px;
}

.other-paragraph {
  line-height: 1.5;
  font-size: 18px;
}

.learn-more-btn {
  background-color: #1467ff;
  width: 150px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* Added to remove underline */
}

.learn-more-btn:hover {
  background-color: #00bd2a;
  /* Darker shade of blue on hover */
}

.animated-image {
  opacity: 0;
  /* Start with opacity 0 */
  transform: translateX(-100%);
  /* Start with image positioned outside the viewport on the left */
  animation: slideInRight 2s ease-in-out forwards;
  /* Use slideIn animation with a duration of 1 second */
}

@keyframes slideIn {
  0% {
    opacity: 0;
    /* Start with opacity 0 */
    transform: translateX(-100%);
    /* Start with image positioned outside the viewport on the left */
  }

  100% {
    opacity: 1;
    /* End with opacity 1 */
    transform: translateX(0);
    /* End with image positioned at its original position */
  }
}

.animated-image1 {
  opacity: 0;
  /* Start with opacity 0 */
  transform: translateX(100%);
  /* Start with image positioned outside the viewport on the right */
  animation: slideIn 2s ease-in-out forwards;
  /* Use slideInRight animation with a duration of 2 seconds */
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    /* Start with opacity 0 */
    transform: translateX(100%);
    /* Start with image positioned outside the viewport on the right */
  }

  100% {
    opacity: 1;
    /* End with opacity 1 */
    transform: translateX(0);
    /* End with image positioned at its original position */
  }
}

/* Add animation properties to animate text */
.smart-plug-title,
.plug-color,
.plug-description,
.plug-specs,
.plug-link,
.other-paragraph {
  opacity: 0;
  animation: slideInTextLeft 2s ease-in-out forwards;
}

@keyframes slideInTextLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.learn-more-btn {
  opacity: 0;
  animation: slideInTextLeft 2s ease-in-out forwards;
}

.animated-image {
  opacity: 0;
  animation: slideIn 2s ease-in-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated-image1 {
  opacity: 0;
  animation: slideInRight 2s ease-in-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add animation properties to animate the row */
.animated-row {
  opacity: 0;
  animation: slideInRow 2s ease-in-out forwards;
}

@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add animation properties to animate each column */
.animated-column {
  opacity: 0;
  animation: slideInColumn 2s ease-in-out forwards;
}

@keyframes slideInColumn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* more page */

.cards-container {
  /* List Styling Clean-Up */
  list-style: none;
  padding: 0;
  margin: 0;

  /* Alignment */
  margin: auto;
}

@media (min-width: 788px) {
  .cards-container {
    width: 728px;
  }

  /* Clear Fix */
  .cards-container::after {
    content: "";
    clear: both;
    display: table;
  }
}

@media (min-width: 1166px) {
  .cards-container {
    width: 1106px;
  }
}

[class$="feature-card"] {
  /* Positioning and Sizing */
  position: relative;
  box-sizing: border-box;
  width: 350px;
  height: 150px;

  /* Alignment */
  margin: 0;
  padding: 32px;

  /* Box Details */
  border-radius: 10px;
  border-top: solid 5px black;
  box-shadow: 2px 5px 20px rgb(0, 0, 0, 0.1);
}

[class$="feature-card"] h2,
[class$="feature-card"] p {
  margin: 0;
}

[class$="feature-card"] img {
  position: absolute;
  bottom: 32px;
  right: 32px;
}

[class$="feature-card"][class*="cyan"] {
  border-color: #007bff;
}

[class$="feature-card"][class*="red"] {
  border-color: #5ed291;
}

[class$="feature-card"][class*="orange"] {
  border-color: #007bff;
}

[class$="feature-card"][class*="blue"] {
  border-color: hsl(212, 86%, 64%);
}

@media (min-width: 788px) {
  [class$="feature-card"] {
    float: left;
  }

  @media (min-width: 1166px) {
    [class$="feature-card"]:first-child {
      margin: 140px 0;
    }

    [class$="feature-card"]:nth-child(2),
    [class$="feature-card"]:nth-child(3) {
      margin: 0 22px;
    }

    [class$="feature-card"]:last-child {
      margin-top: -110px;
    }

    [class$="feature-card"]:nth-child(3) {
      margin-top: 30px;
    }
  }

  @media (max-width: 1165px) {
    [class$="feature-card"]:nth-child(3),
    [class$="feature-card"]:nth-child(4) {
      margin-top: 30px;
    }

    [class$="feature-card"]:nth-child(2),
    [class$="feature-card"]:nth-child(4) {
      margin-left: 28px;
    }
  }
}

@media (max-width: 787px) {
  [class$="feature-card"] {
    width: 300px;
    height: 100px;
    margin: auto;
  }

  [class$="feature-card"]:not(:first-child) {
    margin-top: 22px;
  }
}

.service-title {
  font-size: 70px;
}

.plug-color {
  color: #00bd2a;
}

/* Default font size */
.custom-service-title {
  font-size: 16px;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  .custom-service-title {
    font-size: 16px;
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom-service-title {
    font-size: 14px;
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .custom-service-title {
    font-size: 16px;
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  .custom-service-title {
    font-size: 16px;
  }
}

.smart-plug-section {
  opacity: 0;
  /* Start with opacity 0 */
  transform: translateY(50px);
  /* Start with section positioned 50px below its original position */
  animation: slideInUp 1s ease-in-out forwards;
  /* Use slideInUp animation with a duration of 1 second */
}

@keyframes slideInUp {
  from {
    opacity: 0;
    /* Start with opacity 0 */
    transform: translateY(50px);
    /* Start with section positioned 50px below its original position */
  }

  to {
    opacity: 1;
    /* End with opacity 1 */
    transform: translateY(0);
    /* End with section at its original position */
  }
}

.features-left {
  opacity: 0;
  /* Start with opacity 0 */
  transform: translateX(-100px);
  /* Start with content positioned outside the viewport on the left */
  animation: slideInLeft 1s ease forwards;
  /* Use slideInLeft animation with a duration of 1 second */
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    /* Start with opacity 0 */
    transform: translateX(-100px);
    /* Start with content positioned outside the viewport on the left */
  }

  100% {
    opacity: 1;
    /* End with opacity 1 */
    transform: translateX(0);
    /* End with content positioned at its original position */
  }
}

.features-right {
  opacity: 0;
  /* Start with opacity 0 */
  transform: translateX(100px);
  /* Start with content positioned outside the viewport on the right */
  animation: slideInRight 1s ease forwards;
  /* Use slideInRight animation with a duration of 1 second */
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    /* Start with opacity 0 */
    transform: translateX(100px);
    /* Start with content positioned outside the viewport on the right */
  }

  100% {
    opacity: 1;
    /* End with opacity 1 */
    transform: translateX(0);
    /* End with content positioned at its original position */
  }
}

/* Add your animation styles here */
.section_all {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated {
  opacity: 1;
  transform: translateY(0);
}

/* product home */

.card {
  margin: 10px;
}

.card-img-top {
  height: 300px;
  object-fit: cover;
}

/* Custom CSS for card */
/* Custom CSS for card */
.custom-card {
  position: relative;
  border-radius: 25px;
  /* Rounded corners */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  /* Shadow */
  overflow: hidden;
  /* Hide overflow for rounded corners */
  transition: transform 0.3s ease-in-out;
  /* Transition for card size change */
  cursor: pointer;
}

.custom-card:hover {
  transform: scale(1.05);
  /* Increase size on hover */
}

.custom-card img {
  transition: filter 0.3s ease-in-out;
}

.custom-card:hover .img-box img {
  filter: blur(3px);
  /* Blur the image on hover */
}

/* Details button */
/* Details button */
.details-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border-radius: 5px;
  display: none;
  cursor: pointer;
}

.custom-card:hover .details-button {
  display: block;
}

.card-img-top {
  border-radius: 25px 25px 0px 0px;
}

/* Default font size for card-body */
.card-body {
  font-size: 16px;
}

.card-text {
  text-align: justify;
}

.card-body .btn-primary {
  font-size: 16px;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  .card-body {
    font-size: 14px;
    /* Adjust font size for smaller screens */
  }

  .card-body .btn-primary {
    font-size: 16px;
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .card-body {
    font-size: 15px;
    /* Adjust font size for tablets in landscape mode */
  }

  .card-body .btn-primary {
    font-size: 15px;
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card-body {
    font-size: 16px;
    /* Adjust font size for small desktop screens */
  }

  .card-body .btn-primary {
    font-size: 14px;
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  .card-body {
    font-size: 16px;
    /* Revert to default font size for large desktop screens */
  }

  .card-body .btn-primary {
    font-size: 16px;
  }
}

.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 40px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}

/* get in touch */

/* contact us */

.contact-container {
  background: linear-gradient(to bottom, #1a237e, #311b92);
  /* Light blue background color */
  padding: 50px 0;
  /* Adjust padding as needed */
}

.contact-section {
  text-align: center;
}

.contact-button {
  background-color: #007bff;
  /* Primary button color */
  color: #ffffff;
  /* Button text color */
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.contact-message {
  margin-top: 20px;
  color: #333333;
  /* Dark text color */
}

/* Custom styles */
.contact-container {
  background: linear-gradient(to bottom, #1a237e, #311b92);
  padding: 50px 0;
  /* Adjust padding as needed */
}

.contact {
  color: #ffffff;
}

.contact-container h5 {
  font-size: 40px;
  color: #ffffff;
}

/* Media query for screens smaller than 768px (tablets and below) */
@media (max-width: 767.98px) {
  .contact-container h5 {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    /* Center text */
  }

  .contact-container p {
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    /* Center text */
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items horizontally */
    text-align: center;
    /* Center text */
  }

  .contact-container .custom-btn {
    margin-top: 20px;
    /* Adjust margin as needed */
  }
}

/* Media query for screens between 768px and 991.98px (tablets landscape) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-container h5 {
    font-size: 20px;
    color: #ffffff;
  }

  .contact-container p {
    font-size: 15px;
    color: #ffffff;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    /* Center items horizontally */
    text-align: left;
    /* Center text */
  }
}

/* Media query for screens between 992px and 1199.98px (small desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-container h5 {
    font-size: 40px;
    color: #ffffff;
  }
}

/* Media query for screens larger than 1200px (large desktops) */
@media (min-width: 1200px) {
  .contact-container h5 {
    font-size: 40px;
    color: #ffffff;
  }
}

/* Media Query for mobile devices */
@media (max-width: 767.98px) {
  .order-md-1,
  .order-md-2,
  .order-md-4,
  .order-md-3 {
    /* Reset the order for medium devices and above */
    order: initial !important;
  }

  .order-2 {
    /* Change the order for mobile devices */
    order: 1 !important;
  }

  .order-1 {
    /* Change the order for mobile devices */
    order: 2 !important;
  }

  .order-3 {
    /* Change the order for mobile devices */
    order: 3 !important;
  }

  .order-4 {
    /* Change the order for mobile devices */
    order: 4 !important;
  }
}
.service-subtitle {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .service-section .service-main-heading {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .service-title {
    font-size: 50px;
  }
  .service-subtitle {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) and (min-width: 480px) {
  .service-section .service-main-heading {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .service-title {
    font-size: 35px;
  }
  .service-subtitle {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 479px) {
  .service-section .service-main-heading {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .service-title {
    font-size: 25px;
  }
  .service-subtitle {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
}
