@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'poppins';
  border: 0;
  font-size: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  cursor: default;
}

main {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

:root {
  --blue: #0196ec;
  --white: #fff;
}

.e-btn {
  color: var(--white);
  padding: 6px 18px;
  background-color: var(--blue);
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  border: none;
  text-align: center;
  transition: all 0.3s;

  &:hover {
    background-color: #0196ecc4;
  }
}

.read {
  width: 170px !important;
  display: inline-block;
  transition: all 0.5s;
}

.read span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.read span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.read:hover span {
  padding-right: 25px;
}

.read:hover span:after {
  opacity: 1;
  right: 0;
}


.overlay {
  position: absolute;
  background-color: #000000b2;
  width: 100%;
  height: 100%;
}


.image-overlay {
  position: absolute;
  border-radius: 40px;
  background-color: #0006;
  width: 100%;
  height: 100%;
  top: 0;

}

section {
  padding: 30px 0px;
}

.choose-card {
  background-color: #fff;
  min-height: 150px;
  transition: all 0.3s ease-in-out;

  &:hover {
    background-color: var(--blue);
    color: #fff;
  }

}

.choose-card:hover .e-btn{
  background-color: #fff;
  color: var(--blue);
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item::before {
  /* color: #fff !important; */
  font-weight: 600;
}

.page-banner {
  height: 300px;
}

@media (max-width: 768px) {
  .page-banner {
    height: 150px;
  }
}

input::placeholder {
  color: #000 !important;
}

textarea::placeholder {
  color: #000 !important;
}


/*call-button*/
.call-button .call-to-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  background: #13e054;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 100%;
  box-sizing: border-box;
  color: #fff;
  animation: 0.6s linear infinite call-to-action-ripple;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.call-button .call-to-action-ripple i {
  transition: 0.3s;
  font-size: 2.2rem;
}

@keyframes call-to-action-ripple {
  0% {
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/*call button*/

.text-justify {
  text-align: justify;
}

.product-card {
  transition: transform 0.2s ease-in-out;
}

.product-card:hover .card-img-top {
  transform: scale(1.06);
  transition: all 0.3s ease-out;
}


.counter-number{
  color: #fff;
}

.contactmedia a {
  height: 40px;
  width: 40px;
  margin: 5px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
}

