.navbar .navbarMenu .menuLinks, .navbar .navbarMenu, .navbar .navbarLogo {
  display: flex;
  align-items: center;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  background: #f7f7f7;
  height: 80px;
  padding: 0.5rem calc((100vw - 1200px) / 2);
  z-index: 10;
  position: relative;
}
.navbar .navbarLogo {
  color: #222121;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  margin-left: 24px;
}
.navbar .navbarBars {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .navbar .navbarBars {
    color: #222121;
    opacity: 1;
    position: absolute;
    top: 22px;
    right: 20px;
    font-size: 2rem;
  }
}
.navbar .navbarMenu {
  list-style: none;
  text-align: center;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .navbar .navbarMenu {
    display: none;
  }
}
.navbar .navbarMenu .menuLinks {
  color: #222121;
  justify-content: space-between;
  padding: 0 1rem;
  text-decoration: none;
}
.navbar .navbarMenu .menuLinks:hover {
  color: #00cc66;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.navbar .navbarMenu #button {
  padding: 12px 24px;
  margin-left: 16px;
  background: #00cc66;
  color: #f7f7f7;
  outline: none;
  border: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
}
.navbar .navbarMenu #button:hover {
  background: #fb4b4e;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hero {
  background-color: #f7f7f7;
}
.hero .heroContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
  max-width: 1200px;
  width: 100%;
  height: 90vh;
}
@media screen and (max-width: 768px) {
  .hero .heroContainer {
    grid-template-columns: 1fr;
    height: 100%;
  }
}
.hero .heroContainer .heroContainer-left {
  width: 100%;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .hero .heroContainer .heroContainer-left {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 268px) {
  .hero .heroContainer .heroContainer-left {
    line-height: 1.5;
  }
}
.hero .heroContainer .heroContainer-left h1 {
  font-size: 4rem;
  color: #00cc66;
}
@media screen and (max-width: 268px) {
  .hero .heroContainer .heroContainer-left h1 {
    font-size: 1.5rem;
  }
}
.hero .heroContainer .heroContainer-left h2 {
  font-size: 4rem;
  color: #222121;
}
@media screen and (max-width: 268px) {
  .hero .heroContainer .heroContainer-left h2 {
    font-size: 2rem;
  }
}
.hero .heroContainer .heroContainer-left p {
  font-size: 2rem;
  color: #222121;
  margin-top: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 268px) {
  .hero .heroContainer .heroContainer-left p {
    font-size: 1.5rem;
  }
}
.hero .heroContainer .heroContainerBtn {
  position: relative;
  font-size: 1rem;
  background: #00cc66;
  color: #f7f7f7;
  padding: 14px 32px;
  margin-top: 2rem;
  border: none;
  outline: none;
  transition: all 0.3s;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.hero .heroContainer .heroContainerBtn a {
  position: relative;
  color: #f7f7f7;
  text-decoration: none;
  z-index: 2;
}
.hero .heroContainer .heroContainerBtn:after {
  position: absolute;
  background: #fb4b4e;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.hero .heroContainer .heroContainerBtn:hover:after {
  width: 100%;
}
.hero .heroContainer .heroContainer-right {
  text-align: center;
}
.hero .heroContainer .heroContainer-right img {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */