:root {
  --primary-color: #000000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
html {
  background: #fff;
  font-size: 62.5%;
}
ul, li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
#container {
  /* display: flex;
  flex-direction: column; */
  min-height: 100%;
  position: relative;
}
.header {
  padding: 10% 1.5rem 3.5rem;
}
.logo .logo-img {
  display: block;
  max-height: 8rem;
  max-width: 100%;
  margin: 0 auto;
}
.search-box {
  background-color: #FCFCFC;
  border-top: 0.1rem solid #eee;
  border-bottom: 0.1rem solid #eee;
  padding: 2.5rem 1.5rem;
}
.search-section {
  max-width: 97rem;
  margin: 0 auto;
}

#search-form {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#search-form .search-ipt {
  width: 100%;
  height: 5rem;
  border: .1rem solid #ECEFF1;
  padding: 1rem 6rem 1rem 2rem;
  outline: none;
  font-size: 2rem;
  font-weight: 300;
  border-radius: .4rem 0 0 .4rem
}
#search-form .btn-custom {
  height: auto;
  width: 6rem;
  background-color: var(--primary-color, #000000);
  color: #fff;
  font-weight: 400;
  outline: 0;
  border: none;
  border-radius: 0 .4rem .4rem 0;
  font-size: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.slogan {
  text-align: center;
  padding: 5rem 0;
}
.slogan-title {
  font-size: 1.6rem;
  color: var(--primary-color, #000000);
  font-weight: 700;
  line-height: 3rem;
}
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  font-size: 1.4rem;
  color: #666;
}
.copyright {
  line-height: 3rem;
}
.nav-footer::after {
  content: '';
  display: block;
  clear: both;
}
.nav-footer li {
  /* float: left; */
  display: inline;
  padding: 0 .2rem;
}
.cookie-agree-container {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.cookie-agree-box {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  /* position: -webkit-sticky; */
  background-color: rgba(30, 30, 30, .9);
  /* box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .5); */
  color: #aaa;
  padding: 10px 0;
}
.cookie-agree-container .cookie-info-section {
  padding: 0 30px;
  font-size: 14px;
}
.cookie-agree-container .cookie-btn-section {
  padding: 0 30px;
  text-align: center;
}
.cookie-agree-container .privacy-link {
  color: #00a852;
  /* color: #246eef; */
}
.cookie-agree-container .agree-btn {
  background-color: #00a852;
  /* background-color: #246eef; */
  color: #eee;
  border: none;
  border-radius: 4px;
  height: 30px;
  width: 60px;
}
@media (min-width: 960px) {
  .nav-footer li {
    padding: 0 .5rem;
  }
}
@media (max-width: 959px) {
  /* .header {
    padding-top: 8rem;
    padding-bottom: 8rem;
  } */
  #search-form {
    margin-top: 0;
    margin-bottom: 0;
  }
  .slogan {
    display: none;
  }
  .footer {
    font-size: 1.2rem;
    padding-bottom: 2rem;
  }
  .cookie-agree-box {
    flex-direction: column;
  }
  .cookie-agree-container .cookie-info-section {
    padding: 0 10px;
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 14px;
  }
  .cookie-agree-container .cookie-btn-section {
    padding: 0 10px;
  }
}

.grecaptcha-badge {
  display: none;
}
