*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #b0c4de;
  font-family: BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
  color: aliceblue;
  text-decoration: none;
}
a:hover {
  color: #007bff;
  transition: .4s;
}

.horizontalLine {
  display: block;
  margin: 10px auto;
  max-width: 600px;
  border-bottom: 1px solid #000;
}

#header > .logo {
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#header > .logo > img {
  display: block;
  width: 14%;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 20px;
}
#header > nav {
  text-align: center;
}
#header ul > li {
  display: inline-block;
  font-size: 25px;
  padding: 15px 0;
}
#header ul > li:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 1180px) {
  #header > .logo > img {
    width: 24%;
  }
}
@media screen and (max-width: 815px) {
  #header > .logo > img {
    width: 44%;
  }
}

#main {
  display: block;
  margin: 0 auto;
  text-align: center;
}

#chooseLocation {
  margin-bottom: 100px;
}
#chooseLocation h2,
#chooseCategory h1 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 450;
  font-size: 32px;
}
#chooseLocation  button {
  outline: none;
  font-size: 30px;
  padding: 20px 25px;
  cursor: pointer;
  border: 1px solid #000D2F;
  border-radius: 20px;
}
#chooseLocation  button:hover {
  background-color: #417CCA;
  transition: .4s;
  color: #fff;
}
#chooseLocation  .clicked {
  background-color: #417CCA;
  color: #fff;
  border: 1px solid #000D2F;
}
#chooseLocation  button:not(:first-child) {
  margin-left: 20px;
}
#chooseLocation .datalist {
  display: block;
  margin: 0 auto;
  font-size: 28px;
  padding: 7px 12px;
}
#chooseLocation #btn-chooseLocation {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  padding: 10px 35px;
  border-radius: 12px;
}
#chooseLocation p {
  font-size: 30px;
}
#chooseLocation #changeLocation {
  text-decoration: underline;
}
#chooseLocation #changeLocation:hover {
  color: #9A1E5A;
  transition: .3s;
  cursor: pointer;
}
@media screen and (max-width: 815px) {
  #chooseLocation  button {
    margin: 10px 0;
  }
}

#chooseCategory ul > li > a:hover {
  color: #9A1E5A;
}
#chooseCategory ul > li > a {
  font-size: 32px;
  color: #000;
}


#slider {
  position: relative;
  overflow: hidden;
  height: 600px;
  margin-top: 50px;
  margin-bottom: 50px;
}
#slider__wrapper {
  width: 600%;
  display: flex;
  transition: transform .6s ease;
  position: absolute;
  left: 0%;
}
.slider__item {
  width: 100%;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 815px) {
  #slider {
    height: 300px;
  }
  .slider__item {
    height: 300px;
  }
}

#about > h2 {
  font-weight: 350;
  font-size: 28px;
  padding: 0 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1180px) {
  #about > h2 {
    font-size: 20px;
  }
}

#banner > img {
  width: 80%;
  margin-bottom: -4px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
