html {
  /* background-color: rgb(237, 235, 216); */
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 0 auto;
}
header {
  margin: 0 auto;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: center;
  padding: 1rem 4rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 2px 2px 10px 0 rgb(112, 123, 139);
}
header a {
  color: #000;
  text-decoration: none;
}
.logo {
  font-family: "Cagliostro", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #000;
  display: inline-block;
}

#main-panel-bg {
  background-image: url("skyline.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
#x {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 39, 84, 0.9);
}
#main-panel {
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  padding: 10rem 0;
  position: relative;
}
.t1 {
  font-size: 2.5rem;
  line-height: 3.5rem;
  text-align: center;
  color: #fff;
  padding: 1rem;
}
.t3 {
  font-size: 1.2rem;
  color: #555;
  font-family: "Times New Roman", Times, serif;
}

.about {
  font-family: "Cagliostro", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1rem;
  color: #222;
  padding: 1rem;
}

.why-op {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 3px 3px 5px 0 rgb(164, 177, 195);
  border: 1px solid rgb(170, 179, 188);
}
.why-title {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 500;
  color: rgb(32, 48, 63);
  height: 4rem;
}

.why-desc {
  color: rgb(77, 98, 120);
  font-size: 0.9em;
  line-height: 1.4rem;
}

.service {
  margin: 4rem 0;
  line-height: 1.8rem;
  background-color: #fff;
  padding: 1.5rem;
  color: #333;
  box-shadow: 0px 1px 4px 0 #000;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-fee {
  color: rgb(153, 90, 149);
  margin-top: 1rem;
}

.what-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: rgb(54, 73, 92);
}

#why-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

#jon-img {
  width: 350px;
  float: right;
  margin: 0.5rem 0rem 1rem 2rem;
  border: 3px solid #fff;
}

#what-is {
  margin: 0 auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 2rem;
  gap: 4rem;
  font-weight: 300;
  font-size: 1rem;
  line-height: 2rem;
  color: rgb(53, 75, 96);
  font-family: "Poppins", sans-serif;
}

@media (max-width: 992px) {
  #why-section {
    grid-template-columns: 1fr;
  }
  #jon-img {
    width: 100%;
    float: none;
    margin: 0 0 2rem 0;
  }

  #what-is {
    grid-template-columns: 1fr;
  }
  .why-title {
    height: initial;
    margin-bottom: 1rem;
  }
  header {
    gap: 2rem;
    padding: 1rem 1rem;
  }
}
