@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;800&family=Rubik+Wet+Paint&display=swap");

:root {
  --bg-red: #d73f28;
  --bg-green: #317315;
  --text-brown: #d73f28;
  --bg-cherry: #d9b83f;
  --text-cherry: #d9b83f;
  --body-font-family: "Poppins", sans-serif;
}

body,
html {
  font-family: var(--body-font-family);
  scroll-behavior: smooth;
  background: #f5f5f5;
}

.text-justify{
  text-align: justify;
}

.text-red{
  color: var(--bg-red);
}

.text-green{
  color: var(--bg-green);
}

.text-cherry{
  color: var(--bg-cherry);
}

.bg-cherry {
  background-color: var(--bg-cherry) !important;
}

.bg-red {
  background-color: var(--bg-red) !important;
}
.bg-green {
  background-color: var(--bg-green) !important;
}

.image-radius {
  -webkit-box-shadow: 0 4px 30px -5px black;
  box-shadow: 0 4px 30px -5px black;
  border-radius: 7px;
}

.img-effect {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}







.card-highlight:hover {
  background-color: var(--bg-red);
  color: #ffffff;
}

.card-highlight {
  height: 240px;
  align-items: center;
  border-radius: 0px 20px 0 20px;
}

.card-highlight i {
  font-size: 2.5em;
  margin-top: 0.5em;
}

.card-highlight p {
  font-size: 12px;
  text-align: justify;
  padding-right: 1em;
  padding-left: 1em;
}


.home-header-bg{
  background-size: contain;
  background-attachment: scroll;
  background-position: bottom;
  background-repeat: no-repeat;
}


.home-cover {
  background-size: cover;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.cover-header{
  height: 200px;
  background-image: url("../assets/img/cover-header.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* footer {
  background: #212529;
} */