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

.sm-icons {
    flex-direction: row;
  }

.navbar {
  height: 75px;
  /*padding: 0 20px; */
}   

.navbar .navbar-nav .nav-link:hover {
    color: #000000;
  }

.navbar .navbar-nav .nav-link {
    position: relative;
  }
.navbar .navbar-nav .nav-link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 8px;
    background-color: #000000;
    color: transparent;
    width: 0%;
    content: '';
    height: 3px;
    transition: all 0.5s;
  }

.navbar .navbar-nav .nav-link:hover::after, .nav-link:active {
    width: calc(100% - 16px);
  }

  /* color for footer-Links */
.nav .nav-item .nav-link a {
    color: #323335 !important;
  }

h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
} 

body {
  font-family: Varela Round, sans-serif;
  font-weight: 400;
  color: #323335;
}

/* change navbar background on collapse */
@media only screen and (max-width: 768px) {
  .navbar-nav {
    background: white;
    padding: 1em;
  }
}

@media only screen and (max-width: 960px) {
  .sm-icons .nav-item {
    padding-right: 2em;
  }

  h1 {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1.3;
  } 

}