@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap');

:root {
  --primary: #006837;
  --light: #f5f5f5;
  --border-radius: 0.25rem;
  --dark: #222237;
}

.bg-custom {
  background: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
  font-weight: ;
}

.text-dark {
  color: var(--dark) !important;
}

body {
  font-family: 'Space Grotesk', sans-serif;
}

.row,
body,
.container-fluid,
.col-lg-5,
.col-lg-4,
.col-lg-3 {
  height: 100vh;
}

.border-radius {
  border-radius: 0.75rem;
}

.logo{
  max-width: 30rem;
  margin-bottom: 3rem;
}




/* BREAKPOINTS */
@media screen and (max-width: 993px) {
  .information-container, .display-1{
    font-size: 5rem;
  }

  .information-container, .h2{
    font-size: 2rem;
  }

  .logo{
    max-width: 26rem;
    margin-bottom: 3rem;
  }
  
}

@media screen and (max-width: 576px) {
  .information-container, .display-1{
    font-size: 4rem;
  }

  .information-container, .h2{
    font-size: 1.5rem;
  }

  .logo{
    max-width: 23rem;
    margin-bottom: 3rem;
  }
  
}

