@import url("common.css");

@font-face {
  font-family: "Capriola";
  src: url("/fonts/Capriola-Regular.woff2") format("woff2"),
    url("/fonts/Capriola-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  scrollbar-width: thin;
  color: #777;
}

html {
  scroll-behavior: smooth;
  font-family: "Capriola", sans-serif;
  line-height: 1.6;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.header-banner {
  animation: slide-in-right 1s ease-in-out 0.6s both;
}

/* Add fancy transform effect on hover and focus states */
.header-banner:hover,
.header-banner:focus {
  transform: translateY(-5px) scale(1.05);
  transition: 1s;
}

/* Add class border-color: white; to all that have class btn */
.btn {
  border-color: white !important;
}

/* Add a transition for scaling and rotation when mouse leaves the image */
.header-banner:not(:hover):not(:focus) {
  transition: transform 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

/* Add a smooth reset effect when the mouse leaves the image */
.header-banner:not(:hover):not(:focus) {
  transform: translateY(0) scale(1) rotate(0);
}

@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-animation .anim-slide-left {
  animation: slide-in-left 1s ease-out forwards;
}

.text-animation .anim-slide-right {
  animation: slide-in-right 1s ease-out forwards;
}

.text-animation .anim-slide-top {
  animation: slide-in-top 1s ease-out forwards;
}

.text-animation .anim-slide-bottom {
  animation: slide-in-bottom 1s ease-out forwards;
}

.img-logo {
  object-fit: contain;
  height: 35px;
  width: 65px;
}

.btn-primary {
  background-color: #006c59;
  border-color: white;
}

.bg-primary {
  background-color: #006c59 !important;
}

.form-control:focus {
  box-shadow: none !important;
  border-color: black !important;
}

.top-lead {
  font-weight: 300;
}

.blockquote-footer {
  font-size: 1.5rem;
  animation: slide-in-bottom 1s ease-out 1s forwards;
}

@font-face {
  font-family: "FontAwesome";
  src: url("/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2");
  font-display: swap;
}

.card {
  border: none;
  font-size: large;
  text-align: left;
  line-height: 1.8;
  /* disble the background color from another library */
  background-color: transparent !important;
}

.card-pricing {
  font-size: small;
  text-align: left;
  line-height: 1.8;
}

.card-title {
  font-size: medium;
}

.card-body ul li {
  font-size: smaller;
}

/* Add css to .card-body with ul only apply to .card-body */
.card-body-list {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.btn-link {
  color: #006c59;
  font-weight: 500;
  text-decoration: none;
  outline: none;
}

.btn-link:hover {
  color: #006c59;
  text-decoration: none;
}

.btn-link:focus {
  color: #006c59;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.paragraph {
  font-size: medium;
  text-align: left;
  line-height: 1.8;
}

.header {
  background-color: #006c59;
  color: #ffffff;
  padding: 2.2rem 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.header-text {
  font-weight: bold;
}

.img-fill {
  width: 100%;
  object-fit: fill;
  height: -webkit-fill-available;
}

.features-bg {
  background-color: #eefbf9;
  border-radius: 3rem;
}

.card-feature {
  background: beige;
}

.banner-text {
  font-size: 1.2rem !important;
  font-weight: 200;
}

/* Add fancy transform effect on hover and focus states */
.image-transform:hover,
.image-transform:focus {
  transform: translateY(-5px) scale(1.05);
  transition: 1s;
}

/* Add a transition for scaling and rotation when mouse leaves the image */
.image-transform:not(:hover):not(:focus) {
  transition: transform 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

/* Add a smooth reset effect when the mouse leaves the image */
.image-transform:not(:hover):not(:focus) {
  transform: translateY(0) scale(1) rotate(0);
}

.google-btn:hover {
  transform: scale(1.05);
}

.apple-btn:hover {
  transform: scale(1.05);
}

.card-body p {
  font-size: smaller;
}

.card-text p {
  font-size: small;
}

.theme-color {
  background-color: #006c59;
}

body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track {
  background: #006c59;
}

body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.br-2 {
  border-radius: 2rem;
}
