/* *모든태그  */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  width: 100%;
  height: 100px;
  background-color: #ff9e80;
}

.navbar__logo {
  font-size: 24px;
}

.navbar__logo i {
  color: white;
}

.navbar__menu {
  display: flex;
  font-size: 20px;
  padding: 0;
  list-style: none;
}

.navbar__menu li {
  padding: 8px 12px;
}

.navbar__menu li:hover {
  background-color: #ffc1e3;
  border-radius: 5px;
}

.nav__icon {
  display: flex;
}

.nav__icon i {
  display: flex;
  color: white;
  padding: 12px 12px;
  font-size: 30px;
  margin: 0;
  width: 44px;
  height: 44px;
}

.nav__icon i:hover {
  color: #100808;
}

.nav__icon a {
  text-decoration: none;
}

.header__container {
  width: 100%;
  height: 700px;
  background-color: #ff9e80;
}

.header__text {
  margin-top: 30px;
  color: white;
  font-size: 80px;
  font-weight: bolder;
  text-align: center;
}

.header__button {
  margin: 0;
  position: absolute;
  top: 70%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header__pofile {
  display: flex;
  justify-content: center;
}

.header__pofile img {
  margin-top: 70px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  border: 4px solid white;
}

/* 슬라이더 */

.slide__container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  -webkit-transition: left .3s ease-in;
  transition: left .3s ease-in;
}

.slide__wrap {
  position: absolute;
  width: 100%;
  height: 400px
}

.slide {
  position: absolute;
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  overflow: hidden;
}

#prev, #next {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: inline-block;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
}

#prev.disabled, #next.disabled {
  display: none;
}

#prev {
  margin-left: -480px;
  background-image: url(images/arrow1.png);
  font-size: 10px;
}

#prev :hover {
  background-image: url(images/arrow1.png);
}

#next {
  margin-left: 380px;
  background-image: url(images/arrow2.png);
  font-size: 10px;
}

#next :hover {
  background-image: url(images/arrow2.png);
  color: black;
}

/* 푸터 */

footer {
  text-align: center;
  font-size: 5px;
  height: 30px;
}

.footer_menu {
  display: flex;
  justify-content: center;
  padding: 30px;
  margin: 30px;
}

.footer_menu img {
  width: 30px;
  vertical-align: middle;
  margin: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.copyright {
  margin-top: 40px;
  font-size: 5px;
  color: gray;
  text-align: center;
  font: "San Francisco", Helvetica, Arial, san-serif;
}