* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #171f2a;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.navbar {
  display: grid;
  width: 100%;
  top: 1.25rem;
  margin-bottom: 1.875rem;
}
/* .wrapper {
  width: 100%;
  min-height: 50vh;
} */
ul {
  text-decoration: none;
  position: absolute;
  right: 0.3125rem;
  margin-top: 1.875rem;
}
li {
  display: inline-block;
  padding: 0.9375rem;
}
a {
  text-decoration: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-right: 0.3125rem;
  padding-right: 0.625rem;
  font-size: 0.8125rem;
  color: white;
}
.logo {
  margin-top: 1.875rem;
  margin-left: 1.875rem;
}
.logo:hover{
  cursor: pointer;
}
h1 {
  margin-top: 1.875rem;
  margin-left: 1.875rem;
  color: white;
  /* margin-left: 0.3125rem; */
}
h2,
p {
  color: white;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 100vh;
  text-align: center;
}
.intro-image {
  grid-column: 2/4;
  margin-bottom: 0.625rem;
}
.intro-message {
  grid-column: 2/4;
  color: white;
  font-size: 1.0625rem;
  padding: 0.9375rem;
}
.intro-p {
  /* box-model */
  padding: 0.9375rem;
  width: 45rem;
  margin: auto;
  grid-column: 2/4;
  /* typography */
  font-size: 16px;
  /* visual */
  color: white;
}
.intro-button {
  margin: auto;
  grid-column: 2/4;
  margin-bottom: 1.25rem;
}
button:hover{
  cursor: pointer ;
}
button {
  /* typography */
  font-size: 15px;
  /* box-model */
  width: 15rem;
  padding: 0.625rem;
  /* visual */
  background-color: #8bdae3;
  color: white;
  border: none;
  border-radius: 1.5625rem;
}
/* features section */
.features {
  /* box-model */
  margin-top: 2.575rem;
  /* border: 1px solid white; */
  /* min-height: 100vh; */
  padding: 6.25rem;
  /* visual */
  background-image: url("../images/bg-curvy-desktop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  place-content: center;
  /* background-position: -200px 200px; */
}
.feature-content {
  /* box-model */
  display: grid;
  grid-template-columns: .5fr .5fr;
  gap: 2.25rem;
  /* border: 1px solid white; */
  padding: 2.25rem;
  margin-top: 3.125rem;
  /* typography */
  text-align: center;
}

.feature-content div {
  text-align: center;
  /* width: 300px;
    height: 300px; */
  /* place-content: center; */
}
.feature-content h3 {
  color: white;
  font-size: 1.25rem;
}

.stay-productive {
  /* box-model */
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0.625rem;
  column-gap: 0.625rem;
}
.prod-msg {
  /* box-model */
  margin-top: 1.875rem;
  width: 40.25rem;
  padding: 5.25rem;
}
.arrow {
  position: absolute;
  margin-top: 0.325rem;
  margin-left: 0.325rem;
  /* border: 1px solid white; */
}
.quotes {
  /* box-model */
  min-height: 70vh;
  margin: 1.25rem;
  padding: 1.25rem;
  /* border: .0625rem solid white; */
}
.quote-img {
  position: absolute;
  left: 5.25rem;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.25rem;
  padding-top: 30px;
  padding-left: 3.35rem;

}
.rev-card {
  /* box-model */
  height: 12.5rem;
  width: 20.75rem;
  background-color: #21293c;
  z-index: 1;
  box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.383);
  padding: 2.5rem;
  position: relative;
  border-radius: .75rem;
}
.rev-card p {
  /* visual */
  font-size: 0.85rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.profile-pic img {
  border-radius: 100%;
  width: 35px;
  height: 35px;
  margin-top: 1.5625rem;
}
h4 {
  display: inline-block;
  position: absolute;
  color: white;
  left: 80px;
  bottom: 42px;
  font-size: 0.85rem;
  margin-bottom: 0.4125rem;
}
.rev-job-title {
  /* box-model */
  display: inline-block;
  position: absolute;
  color: white;
  left: 80px;
  bottom: 32px;

  /* typography */
  font-size: 0.6rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.footer {
  /* visual */
  background-color: #0c1524;

  /* box-model */
  height: 70vh;
  padding: 7.625rem;
  position: relative;
}
.easy-access-card {
  /* box-model */
  height: 12.5rem;
  width: 37.75rem;
  padding: .625rem;
  position: absolute;
  border-radius: .75rem;
  bottom:65%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* visual */
  background-color: #1c2230;
  box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.383);

  /* typography */
  text-align: center;
}
.easy-access-card p ,h3{
  margin-bottom: 1.25rem;
  color: white;
}
input{
  /* typography */
  font-size: 15px;

  /* box-model */
  padding: .5rem;
  margin: .625rem;
  width: 20rem;
  border-radius: 1.5625rem;
  border: none;
  
}
.get-started{
    /* typography */
    font-size: 15px;

    /* box-model */
    width: 10rem;
    padding: 0.625rem;
    border: none;
    border-radius: 1.5625rem;

    /* visual */
    background-color: #8bdae3;
    color: white;

}
.foot-logo{
  margin-top: 2.25rem;
  margin-bottom: 2rem;
}
.fa-map-marker-alt, .fa-phone-alt, .fa-envelope{
  color: white;
  margin-left: .625rem;
  margin-top: 1.25rem;
}
.outro{
  
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 2fr;
  column-gap: 2.625rem;
}

.location-p{
  color: white;
  padding: 10px;
  /* margin-left: .625rem; */
}
.third-outro, .fourth-outro{
  padding: 1.25rem;
}
.second-outro span, .third-outro span, .fourth-outro span{
  color: white;
}
.second-outro span  {
  margin-left: 1.25rem;
}
.third-outro, .fourth-outro{
  display: grid;
  justify-content: center;
}
.fifth-outro{
  text-align: center;
  padding: 1.25rem;
}
.fab{
  color: white;
  border: 2px solid white;
  margin: 3px;
  padding: 10px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}
.fab:hover{
  color: #8bdae3;
}

.attribution {
  /* typography */
  text-decoration: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  font-size: 0.8125rem;

  /* visual */
  color: white;
}
footer{
  background-color: #0c1524;
  padding: .75rem;
}
