body {
    margin: 0;
    padding: 0;
    font-family: serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    background-color: rgb(247, 243, 239);
}

.navbar {
  font-family: 'Cinzel', serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: maroon;
  color: white;
}

.logo {
  width: 10vh;
  list-style: none;
  margin-right: auto;
}

.brandname {
font-size: 1.5rem;
margin: .5rem;
padding-left: 20px;
}

.phone {
  display: block;
}

.navlist ul {
  margin: 0;
  padding: 0;
  display: flex;
  padding-right: 20px;
}

.navlist li {
  list-style: none;
}

.navlist li a {
  text-decoration: none;
  color: white;
  padding: 1rem;
  display: block;
  font-size: 1.5rem;
}

.navlist li:hover {
  background: rgb(178, 17, 17);
}

.toggle {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.content {
  padding: 1rem;
  margin: 1rem;
}

.content ul {
  column-count: 3;
  padding-bottom: 10vh;
}

.content ul li {
list-style: none;
text-decoration: none;
margin: 2vh;
}

.content ul li a {
  font-family: 'Cinzel', serif;
  text-decoration: none;
  list-style: none;
  font-size: 1rem;
  padding: 2vh;
  margin: 2vh;
  color: inherit;
  font-size: 1.2rem;
}

.content ul a:visited {
  color: black;
}

.content ul a:hover {
  color: maroon;
}

.content h1 {
  font-family: 'Cinzel', serif;
  font-size: 3vw;
}

.content p {
  font-size: 24px;
  margin: 1rem;
  width: 70%;
}

.content h2 {
  font-family: 'Cinzel', serif;
  font-size: 2vw;
  padding-left: 2rem;
  padding-bottom: 0%;
}

.case_content {
  display: grid;
  /*2x2 grid*/
  /*grid-template-rows: 30fr 70fr;*/
  grid-template-columns: 30fr 70fr;
  margin: 20px;
  padding-bottom: 300px;
}

.contenthome {
  background: maroon;
}

.caseimage {
  grid-row: 1 / 3;
  filter: blur(.5px);
  border-radius: 20%;
  box-shadow: 3px 4px 4px maroon;
}

.footer {
  background-color: maroon;
  color: white;
  padding: 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  margin: 0;
  left: 0;
}

@media (max-width: 1120px) {

}

@media (max-width: 790px) {
  .toggle {
  display: flex;
}
.navlist {
  display: none;
  width: 100%;
}
.navbar {
  flex-direction: column;
  align-items: flex-start;
}
.navlist ul {
  flex-direction: column;
  width: 100%;
}
.navlist li {
  text-align: center;
}
.navlist li a {
padding: .5rem 1rem;
}
.navlist.active {
  display: flex;
}
.content h1 {
  font-size: 6vw;
}
.content p {
  font-size: 18px;
}

}

@media (max-width: 428px) {
  .rwd {
    display: block;
  }
}


