/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */

body {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/**
 * Add your custom styles below
 * 
 * Remember: 
 * - Be organised, use comments and separate your styles into meaningful chunks
 *    for example: General styles, Navigation styles, Hero styles, Footer etc.
 * 
 * - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
 */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding-right: 3rem;
  padding-left: 3rem;
  border-bottom: 1px solid #e5e5e5;
}

.karma {
  float: left;
  height: 50px;
  width: auto;
  padding-left: 2%;
  overflow: hidden;
  margin: 1em;
}

/* /* .navbar {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  margin-left: 20px;
  padding: 0;
} */

.navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: block;
  margin: 0;
}

.nav-link {
  display: block;
  padding: 10px;
  color: #4d4d4d;
  text-decoration: none;
}

.nav-link:hover {
  color: #c05326;
}

.first-background {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 20px;
}
.first-background h1,
.first-background p {
  position: absolute;
  color: #ffffff;
  font-family: "Roboto";
  font-size: 30px;
  margin: 0;
  padding: 0;
  white-space: normal;
}
.first-background h1 {
  font-size: 40px;
  padding-bottom: 70px;
  font-weight: 300;
}
.first-background p {
  font-weight: 300;
  padding-top: 50px;
}
.main-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.btn {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: #c05326;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 1rem 2rem;
  line-height: 1;
  margin-top: 15rem;
}

.services-container {
  margin: 3rem 0 3rem 0;
}

.icons-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 1.2rem;
}
.icons {
  display: flex;
  flex-direction: column;
  padding: 0 2.5rem;
}
.icon1 {
  height: 7rem;
  padding-bottom: 1rem;
}
.services-header {
  text-align: center;
  font-weight: 200;
  font-size: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.get-karma-container {
  display: flex;
  align-items: center;
  background-color: #f3d9ce;
  margin: 5rem 5rem;
}

.img-container {
  margin-right: 10rem;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.5rem;
}

.karma-btn {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: #c05326;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 1rem 1rem;
  line-height: 1;
  margin-top: 10rem;
}
.footer-p {
  text-align: center;
  color: #c5c3c6;
  font-size: 0.65rem;
}
.footer {
  border-top: 1px solid #e5e6e4;
  margin: 1rem 5rem;
  grid-area: footer;
}
.footer-header {
  font-weight: lighter;
  text-align: center;
  font-size: 0.75rem;
}
.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer-icons {
  width: auto;
  height: 0.8rem;
  border: 0.12rem solid #e5e6e4;
  border-radius: 50%;
  padding: 0.38rem;
  margin-left: 0.8rem;
}
