@font-face {
  font-family: AuroraBT-BoldCondensed;
  src: url(../font/AuroraBT-BoldCondensed.otf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color: #d6b464;
}

a {
  color: #000;
}
a:hover {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header {
  border-bottom: 1px solid rgba(180, 182, 184, 0.5294117647);
  height: 133px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: background-color 0.3s;
}
.header.deep {
  background-color: rgba(0, 0, 0, 0.5);
}
.header .left-logo {
  width: 217px;
}
.header .left-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.header .ico-button {
  display: flex;
  align-items: center;
}
.header .search_bt {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 2%;
  display: none;
}
.header .search_bt img {
  width: 48%;
}
.header .menu-button {
  display: none;
}
.header .nav {
  padding-top: 20px;
  font-family: Arial-BoldMT;
}
.header .nav a {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-transform:uppercase;
}
.header .nav li {
  margin: 0 12px;
}
.header .nav li.active a {
  color: var(--color);
}
.header .nav li:hover a {
  color: var(--color);
}
.header .nav .language a {
  display: flex;
  align-items: center;
}
.header .nav .language a img {
  margin-right: 8px;
}
.header .nav .search button {
  border: none;
  outline: none;
  background-color: transparent;
}

@media screen and (max-width: 1500px) {
  .header .left-logo {
    width: 150px;
  }
  .header .nav li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 1388px) {
  .header {
    flex-wrap: wrap;
    padding: 0 5%;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header .left-logo {
    width: auto;
    height: 100%;
    padding: 10px 0;
  }
  .header .search_bt {
    display: flex;
  }
  .header .menu-button {
    display: block;
    cursor: pointer;
  }
  .header .menu-button .bar {
    width: 40px;
    height: 3px;
    margin: 8px auto;
    background-color: var(--color);
    border-radius: 10px;
    transition: 0.3s;
  }
  .header .menu-button.cross .bar:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  .header .menu-button.cross .bar:nth-of-type(2) {
    opacity: 0;
  }
  .header .menu-button.cross .bar:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
  .header .nav {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 5%;
    border-bottom: 1px solid rgba(180, 182, 184, 0.5294117647);
  }
  .header .nav.activ {
    display: block;
  }
  .header .nav li {
    width: 100%;
    padding-bottom: 8px;
  }
  .header .nav .search {
    display: none;
  }
}
.search_show {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s;
}
.search_show.show {
  visibility: visible;
  opacity: 1;
}
.search_show .content {
  position: relative;
}
.search_show input,
.search_show button {
  background-color: transparent;
  border: none;
  outline: none;
  border-radius: 0;
}
.search_show input {
  border-bottom: 1px solid var(--color);
  font-size: 20px;
  padding: 5px;
  color: #fff;
  margin-right: 8px;
}
.search_show .close-box {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  top: -150%;
  right: -40px;
}
.search_show .close-box::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 8px auto;
  background-color: var(--color);
  border-radius: 10px;
  transform: translateY(-11px) rotate(-45deg);
}
.search_show .close-box::before {
  content: "";
  display: block;
  display: block;
  width: 40px;
  height: 3px;
  margin: 8px auto;
  background-color: var(--color);
  border-radius: 10px;
  transform: translateY(0px) rotate(45deg);
}

.footer {
  font-family: Arial-BoldMT;
  background: url(../img/footer-ba.jpg) center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-top: 80px;
}
.footer a {
  color: #fff;
  font-family: Arial-BoldMT;
}
.footer .footer_title {
  font-size: 26px !important;
  font-weight: bold;
  position: relative;
  margin-bottom: 50px !important;
}
.footer .footer_title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-150%);
}
.footer .left, .footer .center, .footer .right {
  padding-bottom: 50px;
}
.footer .left input,
.footer .left button,
.footer .left textarea {
  border: 1px solid #fff;
  background-color: transparent;
  width: 290px;
  height: 42px;
  display: block;
  color: #fff;
  padding-left: 8px;
  border-radius: 8px;
  margin-bottom: 12px;
  outline: none;
}
.footer .left input::placeholder,
.footer .left button::placeholder,
.footer .left textarea::placeholder {
  font-size: 14px;
  color: #a6a4a4;
}
.footer .left textarea {
  height: auto;
  padding: 8px;
}
.footer .left input:focus, .footer .left textarea:focus {
  box-shadow: 0 0 5px #fff;
}
.footer .left button {
  border: none;
  height: auto;
  width: auto;
  padding: 0;
}
.footer .center li, .footer .right li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer .center li a, .footer .right li a {
  font-weight: normal;
}
.footer .center a {
  transition: all 0.3s;
}
.footer .center a:hover {
  color: var(--color);
}
.footer .center .links a {
  margin-right: 5px;
}
.footer .botton {
  width: 100%;
  padding: 0 10px;
  text-align: center;
  color: #f2f2f2;
  font-size: 12px;
  font-weight:bolder;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .footer .footer_title {
    margin-bottom: 20px !important;
  }
  .footer .left, .footer .center, .footer .right {
    width: 100%;
    padding-left: 15%;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .footer_title {
    font-size: 20px !important;
  }
}
.banner_box {
  position: relative;
}
.banner_box img {
  width: 100%;
  display: block;
}
.banner_box h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  text-transform:uppercase;
  color: #fff;
  font-family: Arial-BoldMT;
  font-size: 36px;
  font-size: 2vw;
  font-weight: bold;
}

.page_box {
  margin-top: 3vw;
  display: flex;
  justify-content: center;
}
.page_box .page-item, .page_box .page-num {
  border: none;
  background-color: rgb(244, 247, 246);
  color: #000;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
}
.page_box .page-num-current {
  background-color: rgb(85, 85, 85);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .page_box .page-item, .page_box .page-num {
    width: 30px;
    height: 30px;
  }
}/*# sourceMappingURL=public.css.map */