* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color:#191919;
}

ul {
  list-style: none;
}

.wrap {
  margin: 0 10%;
}

.wrap1 {
  margin: 0 auto;
  max-width: 1200px;
}

body {
  width: 100%;
  font-family: "Nanum Gothic", sans-serif;
  position: relative;
}

.topbanner {
  width: 100%;
}

.topbanner img {
  width: 100%;
}

.topbanner .normal {
  width: 100%;
}

.topbanner .hidden {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5% 0;
}

header .logo img {
  width: 150px;
}

nav {
  width: 100%;
}

nav ul {
  width: 700px;
  float: right;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}

nav a {
  color: #191919;
}

.toggleBtn {
  font-size: 1.7rem;
  color: #003c6c;
  display: none;
}

.main {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}

.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content .title{
 margin:65px 0;
}

.content .title a{
  color: #ffaa00;
  font-size: 1.6rem;
  font-weight: 700;
}

.up {
  width: 100%;
}

.down {
  border: 0;
  width: 80%;
  height: 2px;
  background-image: linear-gradient(
    to right,
    rgba(75, 75, 75, 0),
    rgba(218, 212, 212, 0.75),
    rgba(75, 75, 75, 0)
  );
  margin-bottom: 70px;
}

button {
  margin-top: 50px;
  background: #ffaa00;
  border: none;
  border-radius: 50px;
  padding: 10px 40px;
}

.back {
  color: white;
}

.content .name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.cont {
  display: flex;
  flex-direction: column;
}

.cont img {
  width: 100%;
}

.pagesearch{
  margin:0 auto;
  width:15%;
  display: flex;
  justify-content: center;
  gap: 0 50px;
  margin-top: 50px;
}

.pagesearch a {
  color:#191919;
  font-weight: 700;
}

footer {
  width: 100%;
  background-color: #eeeeee;
  height: 195px;
  text-align: center;
  margin-top: 80px;
}

footer .text {
  padding-top: 45px;
  font-size: 0.8rem;
  line-height: 25px;
}

@media screen and (max-width: 1200px) {
  nav {
    width: 100%;
  }

  nav ul {
    font-weight: 800;
    width: 550px;
  }

  nav li {
    margin: 0 1.3rem;
  }
}

@media screen and (max-width: 1023px) {
  .wrap {
    margin: 0 3%;
  }

  nav {
    width: 100%;
  }

  nav ul {
    font-weight: 800;
    width: 500px;
  }

  nav li {
    margin: 0 1.3rem;
  }

  .wrap1 {
    width: 85%;
  }

  footer .text {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .wrap {
    margin: 0 3%;
  }

  .topbanner .normal {
    display: none;
  }

  .topbanner .hidden {
    display: flex;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    margin: 1rem 0;
    position: relative;
  }

  header .logo img {
    width: 150px;
  }

  nav {
    width: 100%;
    display: none;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }

  nav li {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  nav li:hover {
    background: #003c6c;
    border-radius: 5px;
  }

  header .toggleBtn {
    display: flex;
    position: absolute;
    right: 0;
    top: 5px;
  }

  nav.active {
    display: flex;
  }
  
.content .title{
  width:300px;
  margin:40px 0;
}

  .content .title a{
    font-size: 1.4rem;
    font-weight: 700;
  }

  .content .name {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .cont {
    width: 80%;
    margin:0 auto;
  }

  
.pagesearch{
  width:70%;
  gap: 0 30px;
  margin-top: 50px;
}

  footer .text {
    font-size: 0.5rem;
  }
}
