* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.header {
  background: linear-gradient(
      to right,
      rgba(50, 70, 80, 0.7),
      rgba(30, 20, 150, 0.7)
    ),
    url("../images/Image1.jpg") no-repeat fixed;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
}
.header .text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
h1 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  padding-top: 3%;
  font-size: 3rem;
  color: #0c0c0e;
}
.feature {
  width: 80%;
  margin: auto;
  text-align: center;
}
.feature .feature-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.feature-col {
  flex-basis: 31%;
  background-color: antiquewhite;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
}
.feature .feature-detail {
  margin-top: 3%;
  justify-content: center;
}
.feature-col h3 {
  font-size: 1.3rem;
  padding: 5px 0;
}
.feature-col p {
  padding-top: 10px;
  font-size: 0.9em;
  font-weight: 400;
  color: #141518;
}
.feature-detail p {
  padding-top: 10px;
  font-size: 0.9em;
  font-weight: 400;
  color: #141518;
}
.fee-row {
  display: flex;
  justify-content: center;
}
.fee-col {
  flex-basis: 25%;
  background-color: antiquewhite;
  border-radius: 10px;
  margin: 3%;
  padding: 2%;
  box-sizing: border-box;
}

.fee-col h3 {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 5px 0;
}
.fee-col h4 {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 12px 0;
}
.fee-col p {
  padding-top: 10px;
  font-size: 0.9em;
  font-weight: 600;
  color: #141518;
}
.fee-col ul {
  list-style: none;
}

.fee-col ul li {
  font-size: 0.9em;
  padding: 10px 0;
}
.fee-col ul li:before {
  content: "✓";
}
footer {
  text-align: center;
  padding: 10px;
  height: 100px;
  background-color: #343434;
  color: #fff;
}
footer p {
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  .text-box h1 {
    font-size: 23px;
  }
  .nav-links ul li {
    display: block;
  }
  .feature-row {
    flex-direction: column !important;
  }
  .feature-col {
    padding: 24px 32px;
  }
  .fee-row {
    flex-direction: column !important;
  }
  .fee-col {
    padding: 24px 32px;
  }
  .nav-links {
    position: absolute;
    background: #e2d500;
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa {
    display: block;
    color: #343434;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
}

img {
    object-fit: cover;
}
