body {
  background-color: #181f2a;
  font-size: 14px;
  font-family: "Open Sans";
  color: white;
  margin: 0;
  overflow-x: hidden;
}

h2,
h3,
h4 {
  font-weight: 700;
}

p {
  font-weight: 400;
}

li {
  list-style: none;
}

.button {
  height: 3.5em;
  border-radius: 20px;
  background: linear-gradient(135deg, #65e2d9, #339ecc);
  color: white;
  border: none;
  width: 250px;
  margin: auto;
  outline: none;
  cursor: pointer;
}

.intro {
  display: grid;
  width: 90%;
  margin: auto;
  text-align: center;
}
.intro img {
  width: 100%;
}

.navbar {
  display: grid;
  grid-template-columns: 3fr 3fr;
  padding: 1em;
}
.navbar__logo {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 50%;
}
.navbar__logo img {
  width: 100%;
}
.navbar ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  cursor: pointer;
}

.feature {
  padding-top: 5em;
  display: grid;
  grid-template-columns: 1fr;
}
.feature article {
  display: block;
  justify-content: center;
  width: 320px;
  margin: 3em auto;
  text-align: center;
}
.feature article img {
  margin: auto;
}

.description {
  margin: 5em auto;
  width: 90%;
}
.description__img img {
  width: 100%;
}
.description__text a {
  color: #65e2d9;
  border-bottom: 1px solid #65e2d9;
  cursor: pointer;
}

.review {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5em;
  background-image: url("images/bg-quotes.png");
  background-repeat: no-repeat;
  padding-top: 3em;
  width: 80%;
  margin: auto;
}
.review__profile {
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 1em;
}

.profile__img img {
  width: 100%;
  border-radius: 50%;
}
.profile__text h4, .profile__text p {
  margin: 2px;
  font-size: 0.8em;
}

.container {
  background-color: #202a3c;
  border-radius: 10px;
  padding: 0.8em;
}

.access {
  margin: 5em auto;
  width: 80%;
  position: relative;
  padding-bottom: 10em;
}
.access .container {
  display: block;
  position: absolute;
  top: 30%;
}
.access__text {
  text-align: center;
  width: 100%;
}
.access__input {
  display: grid;
  grid-template-columns: 1fr;
}
.access__input input {
  height: 3.5em;
  border-radius: 20px;
  border: none;
  width: 250px;
  margin: 1em auto;
  outline: none;
  text-align: center;
}
.access__input button {
  margin: 1em auto;
}

footer {
  background-color: #0b1523;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  padding: 15em 2em 2em;
  grid-gap: 2em;
}
.footer__location {
  display: grid;
  grid-template-columns: 20% 80%;
}
.footer__location img {
  margin-top: 1em;
}
.footer__phone {
  display: grid;
  grid-template-columns: 20% 80%;
}
.footer__phone img {
  margin-top: 1em;
}
.footer__social {
  display: flex;
  justify-content: center;
}
.footer__social .icon {
  cursor: pointer;
  margin: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 2em;
  height: 2em;
  padding: 2px;
  border: 1px solid white;
  border-radius: 50%;
}