input,
select {
  height: 30px;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  padding: 0 10px;
  margin-bottom: 10px;
}

input[type=checkbox] {
  height: auto;
}

textarea {
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  padding: 0 10px;
  margin-bottom: 10px;
}

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 100px;
  width: 100%;
}

.nav-bar-wrapper {
  z-index: 100;
  position: fixed;
  top: 0;
  overflow: hidden;
  height: 84px;
  width: 100vw;
  background-color: white;
  border-bottom: 0.5px grey solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.nav-bar-wrapper .menu-btn {
  width: 50px;
  height: 50px;
  scale: 0.5;
  border: none;
  background-color: white;
  display: none;
}
@media (max-width: 600px) {
  .nav-bar-wrapper .menu-btn {
    display: block;
  }
}
.nav-bar-wrapper .menu-btn:focus {
  outline: none;
}
.nav-bar-wrapper .logo {
  padding-left: 100px;
}
@media (max-width: 426px) {
  .nav-bar-wrapper .logo {
    display: block;
    scale: 0.7;
    padding-left: 0;
    margin-right: 0;
  }
}

.item-wrapper {
  text-decoration: none;
  padding: 40px;
  border-radius: 20px;
  background-color: #F9F9F9;
}
.item-wrapper:hover {
  cursor: pointer;
  background-color: #00A651;
}
.item-wrapper:hover .item-title {
  color: white;
}
.item-wrapper:hover .item-desc {
  color: white;
}
.item-wrapper .item-title {
  color: #00A651;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 50px;
}
.item-wrapper .item-desc {
  color: grey;
}

.item-wrapper .default-image,
.item-wrapper:hover .hover-image {
  display: block;
}

.item-wrapper .hover-image,
.item-wrapper:hover .default-image {
  display: none;
}

.wrapper {
  width: 100%;
  padding: 50px;
}
.wrapper .title {
  font-size: xx-large;
  font-weight: bold;
  margin-bottom: 30px;
}

.content-wrapper {
  height: calc(100vh - 84px);
  padding-top: 84px;
  width: 100%;
  margin-left: 15%;
}
@media (max-width: 600px) {
  .content-wrapper {
    margin-left: 0;
  }
}
.content-wrapper.full-width {
  margin-left: 0;
}

.right-menu-wrapper {
  position: fixed;
  right: 0;
  margin-top: 84px;
  height: calc(100vh - 84px);
  width: 15%;
  padding: 24px;
  border-left: 1px solid #D3D3D3;
  overflow-y: auto;
}
@media (max-width: 600px) {
  .right-menu-wrapper {
    display: none;
  }
}
.right-menu-wrapper .right-menu-title {
  color: #2D2D2D;
  font-size: large;
  margin-bottom: 30px;
}
.right-menu-wrapper .right-menu-item {
  display: block;
  margin-bottom: 20px;
  color: #00A651;
  font-weight: bold;
  text-decoration-line: underline;
}

.menu-icon {
  padding-right: 15px;
  height: 30px;
  margin: -7px;
}

h2 {
  border-top: 1px solid rgba(137, 137, 137, 0.3490196078);
  padding-top: 5px;
  color: #838383;
}

.no-border {
  border: none;
  padding-top: 0px;
}
