:root {
  --notification-bar-bg: #222f3e;
  --footer-bg: #0a0a0a;
  --dark: #222f3e;
  --color-green: #00b894;
}

/* IMAGES CLIP-PATHS */

.hero__img {
  clip-path: polygon(0% 15%, 0 0, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.second-hero__img {
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 100% 0, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.third-hero__img {
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 0 100%, 0% 85%);
}

.steps-card__icon-wrapper {
  width: 50px;
  height: 50px;
  border: 1px dashed #576574;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.steps i {
  font-size: 24px;
  color: var(--dark);
}

/* TYPOGRAPHY */

h2 {
  position: relative;
  font-size: 24px;
  border-bottom: 5px;
  left: 15px;
}

h2::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-green);
}

/* NOTIFICATION BAR */

.notification-bar {
  background-color: var(--notification-bar-bg);
}

.notification-bar i, .notification-bar a {
  font-size: 12px;
  color: #c5c7c9;
}

.notification-bar a:hover {
  color: #fff;
}

.notification-bar a {
  font-family: Montserrat, sans-serif;
}

/* BUTTONS */

.hero-btn {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  border: 2px solid var(--color-green) !important;
  color: #2d3436;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 0px;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 80%, 100% 100%, 14% 100%, 0 74%, 0% 20%);
  transition: .2s ease-in-out;
}

.hero-btn:hover {
  border: 2px solid #222f3e !important;
}

.hero-btn-alt {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  background-color: #2d3436;
  border: 2px solid #2d3436;
  padding: 10px 20px;
  color: #fff;
  border-radius: 0px;
  transition: .2s ease-in-out;
}

.hero-btn-alt:hover {
  border: 2px solid var(--color-green) !important;
}

/* NAVBAR */

.navbar a {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.navbar a:hover {
  color: #0a3d62;
  font-weight: bold;
}

.navbar a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  color: black;
}

footer {
  background-color: var(--footer-bg);
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  color: #f5cd79;
}

footer h4 {
  color: #fff!important;
  margin-bottom: 15px;
}

