body {
  margin: 1.5em;
  font-family: "Poppins", sans-serif;
  background-color: rgb(213, 212, 212);
  background-image: url("anirudh-KmQbT4FQvGQ-unsplash.jpg");
}

a {
  text-decoration: none;
  font-size: 1.3rem;
}

.logo {
  color: rgb(255, 255, 255);
  font-weight: bold;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  background: white;
  height: 100vh;
  width: 50%;
  z-index: 999;
  text-transform: uppercase;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 8em;
}

nav ul a {
  color: rgb(0, 0, 0);
  padding: 0.75em 2em;
  display: block;
}

nav ul a:hover {
  background: rgb(235, 235, 235);
}

nav .close {
  float: right;
  margin: 2em;
  width: 2.5em;
  color: black;
}

header {
  display: flex;
  justify-content: space-between;
}

header svg {
  width: 2.3em;
  margin-top: -0.6em;
  cursor: pointer;
}

h1 {
  font-size: 3rem;
  margin-top: 2em;
  line-height: 3.3rem;
}

.subhead {
  font-size: 1.4rem;
}

section.hero {
  color: white;
  height: 90vh;
  animation: moveDown 1s ease-in-out forwards;
  opacity: 0;
}

section.hero .down-arrow {
  stroke: white;
  position: absolute;
  bottom: 8em;
  width: 1em;
  animation: moveArrow 1s alternate-reverse infinite;
}

section.hero .down-arrow path {
  fill: white;
}

.more-info img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 20em;
}
.more-info .title {
  font-weight: bold;
  font-size: 1.25rem;
}
.more-info .desc {
  line-height: 1.5rem;
}

.open-nav {
  transform: translateX(0%);
}

.contact {
  display: block;
  text-align: center;
}

.contact a {
  color: black;
}

.contact a:hover {
  color: rgb(49, 48, 48);
}

.feature h1 {
  color: white;
}

.feature .content1 p {
  color: white;
}

.feature .content2 p {
  color: white;
}

.contact a {
  color: white;
}

.more-info h1 {
  color: white;
}

@media only screen and (min-width: 600px) {
  .contact {
    padding: 2em;
  }
  .contact a {
    color: white;
    text-align: center;
    font-size: 30px;
  }
}
@media only screen and (min-width: 920px) {
  .menu {
    display: none;
  }
  nav {
    transform: translateX(0);
    position: unset;
    display: block;
    width: auto;
    height: auto;
    background: none;
  }
  nav svg.close {
    display: none;
  }
  nav ul {
    display: flex;
    margin: 0;
  }
  nav ul a {
    color: white;
    padding: 0.5em 1.5em;
    font-size: 0.9rem;
  }
  nav ul a:hover {
    background: none;
    text-decoration: underline;
  }
  .logo {
    color: rgb(255, 255, 255);
  }
  .logo span {
    color: rgb(29, 48, 103);
  }
  section.hero {
    color: black;
    height: auto;
    width: 40%;
    margin-bottom: 8em;
  }
  section.hero .subhead {
    margin-bottom: 3em;
  }
  section.hero svg.down-arrow {
    stroke: black;
    position: unset;
  }
  section.hero svg.down-arrow path {
    fill: black;
  }
  .more-info img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 30em;
  }
}
@media only screen and (min-width: 1200px) {
  .more-info {
    text-align: center; /* Center the "About Us" heading */
    margin-top: 3rem; /* Adjust top margin as needed */
  }
  .more-info h1 {
    color: white;
  }
  .feature {
    display: flex;
    justify-content: center; /* Center align items horizontally */
    align-items: flex-start; /* Align items at the top of the container */
    margin-top: 2rem; /* Adjust margin between "About Us" and pictures */
    gap: 2rem; /* Add gap between items */
  }
  .content1, .content2 {
    text-align: center; /* Center align content within each feature */
    flex: 0 1 45%; /* Ensure content blocks take up about half of the container */
    max-width: 45%; /* Limit the maximum width */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
  }
  .content1 img, .content2 img {
    max-width: 100%; /* Ensure images do not exceed their original size */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure images do not affect the line height */
    margin-bottom: 1rem; /* Adjust margin between image and description */
  }
  .content1 .title, .content2 .title {
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: 1rem; /* Adjust spacing */
  }
  .content1 .desc, .content2 .desc {
    line-height: 1.5;
    margin-top: 1rem; /* Adjust spacing */
  }
}/*# sourceMappingURL=about.css.map */