:root {
  --btn-primary: rgb(85, 137, 133);
  --btn-primary-hover: rgb(85, 137, 133 , 0.7);
  --master_text: rgba(255, 255, 255, 0.5);
}

* {
  padding: 0%;
  margin: 0%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f9fa;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.container {
  max-width: 1200px;
  margin: auto;
}

.row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.justify-spaceBetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.text-uppercase {
  text-transform: uppercase;
}

.section {
  height: 100vh;
}

.card {
  display: inline-block;
  background: white;
  border-radius: 5px;
  border-bottom: 5px solid gray;
  margin: 20px 20px;
  padding: 55px;
  color: black;
  text-align: center;
  max-width: 250px;
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.card:hover {
  border-bottom: 5px solid var(--btn-primary);
}

.card:hover .card-title i {
  color: var(--btn-primary);
}

@media (max-width: 500px) {
  .card {
    padding: 20px;
  }
}

.card .card-title {
  padding-bottom: 20px;
}

.card .card-title i {
  color: gray;
  margin-bottom: 15px;
}

.card .card-title h4 {
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.card hr {
  width: 25%;
  margin: auto;
  border: none;
  border-bottom: 1px solid #64a19d;
}

.card .card-body {
  padding-top: 20px;
}

.card .card-body h5 {
  color: rgba(0, 0, 0, 0.61);
  font-weight: normal;
}

.btn {
  margin-top: 50px;
  display: inline-block;
  padding: 20px 40px;
  text-decoration: none;
  color: white;
  letter-spacing: 2px;
  border-radius: 5px;
  text-transform: uppercase;
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary {
  background: var(--btn-primary);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
}

a {
  color: var(--btn-primary);
}
/*# sourceMappingURL=utils.css.map */