* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-color: #f0edf6;
  --btn-bg-color: #6a4aa1;
  --btn-text: #fff;
  --text: #5f4391;
}
body:focus {
  outline: 0;
  box-shadow: 0 0 0 0.8rem #6a4aa180;
}
html {
  font-size: 62.5% !important;
  font-family: Rubik, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}
body {
  font-size: 1.8rem;
  font-weight: 500 !important;
}
.font-rubik {
  font-family: Rubik, sans-serif;
}
.button {
  background: var(--btn-bg-color);
  color: var(--btn-text);
  &:hover {
    border: 1px solid var(--btn-bg-color);
    background: var(--btn-text);
    color: var(--btn-bg-color);
  }
}
.text {
  color: var(--text);
}
.custom-icon {
  color: var(--btn-bg-color);
}
nav,
.hero,
#testimonal,
.icon {
  background: var(--bg-color);
}
.logo {
  height: 3.2rem;
}
.custom-image {
  img {
    width: 48px;
    height: 48px;
    margin-right: -2rem;
  }
}
.work-img {
  position: relative;
}
.phone-bg-image {
  width: 100%;
}
.phone-img {
  width: 64%;
  position: absolute;
  top: -5%;
  left: 18%;
}
.card {
  box-shadow: 0 3.2rem 6.4rem rgb(0 0 0 / 0.06);
  border: none !important;
  transition: all 0.4s ease;
  &:hover {
    transform: translateY(-1.2rem);
    box-shadow: 0 3.2rem 6.4rem rgb(0 0 0 / 0.06);
  }
}
.custom-card-list {
  list-style-type: none;
}
.meal-recipes:hover {
  text-decoration: none;
  color: var(--text);
}
#testimonal figure img:hover {
  transform: scale(1.1);
  transition: all 0.4s ease;
  border-radius: 2rem !important;
  cursor: pointer;
}
.complete-box {
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}
.complete-tag {
  position: absolute;
  padding: 2px 75px;
  top: 6%;
  right: -22%;
  rotate: 50deg;
}
.cta {
  background: linear-gradient(#a080d7, var(--btn-bg-color));
}
.sign-up-btn:hover {
  background: #fff !important;
  color: #000 !important;
}

/* CSS media query */
/* @media (max-width: 768px) {
  .phone-img {
    width: 35%;
  }
  .phone-bg-image {
    width: 50%;
  }
} */
