* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-size: 16px;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
a:hover,a:focus {
  text-decoration: none;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  /* background: #F8FAFD; */
  min-width: 1290px;
  /* font-family: PingFang SC; */
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  -webkit-app-region: no-drag;
}

::-webkit-scrollbar-track {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: #8d8d8d;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
.animate__delay-01s{
  animation-delay: 0.1s;
}
.animate__delay-02s{
  animation-delay: 0.2s;
}
.animate__delay-03s{
  animation-delay: 0.3s;
}
.animate__delay-04s{
  animation-delay: 0.4s;
}
.animate__delay-05s{
  animation-delay: 0.5s;
}
.animate__delay-06s{
  animation-delay: 0.6s;
}
.animate__delay-07s{
  animation-delay: 0.7s;
}
.maxHide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.maxHideTwo {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.maxHideThree {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.row{
  margin: 0;
}
.wrap {
  width: 100%;
  max-width: 1199px;
}


.header {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #f1f1f1;
}
.header>.wrap{
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 10px !important;

}
.logo {
  width: 170px;
}

.logo>img {
  width: 100%;
}

.menu {
  display: flex;
  align-items: center;
  height: 100%;
}
.menu>.menu-item {
  margin-right: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
}
.menu>.menu-item a{
  height: 100%;
  display: flex;
  align-items: center;
  color: inherit;
}

.menu>.active {
  color: #A77454;
  position: relative;
  /* border-bottom: 4px solid #183C85; */
  font-weight: bold;
  position: relative;
  /* background: #183C85; */
}
.menu>.active::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  bottom: 12px;
  background-color: #A77454;
}


.menu .lang {
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.menu .lang .glyphicon{
  font-size: 8px;
  margin-left: 6px;
  top: -2px;
}
.menu .dropdown-menu {
  min-width: 3rem;
}
.btn-group.open .dropdown-toggle{
  box-shadow: none;
}
.menu .trade{
  width: 66px;
  height: 32px;
  background: #A77454;
  font-size: 12px;
  line-height: 32px;
  text-align: center;
  font-variation-settings: "opsz" auto;
  color: #FFFFFF;
  margin-left: 70px;
}
.sub-menu-group {
  position: relative;
}
.sub-menu-group .sub-menu{
  position: absolute;
  bottom: -160px;
  left: -16px;
  display: none;
  width: 100px;
  border-radius: 2px;
  background: #F9F9F9;
  padding: 0 20px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.26);
  font-size: 14px;
  font-weight: normal;
  line-height: 40px;
  color: #666666;
  text-align: center;

}
.sub-menu-group:hover .sub-menu{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-menu-group:hover .sub-menu a.active{
  color: #A77454;
}
.sub-menu-group .sub-menu a:hover{
  color: #A77454;
}
.switch{
  height: 60px;
  width: 100%;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  display: none;
}
.switch img{
  width: 30px;
  height: 30px;
}
.popup{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  transition: all 0.5s;
}
.popupContent{
  width: 300px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0px 4px 24px 0px rgba(183, 190, 194, 0.16);
  padding: 30px;
}
.popupContent>div{
  border: 1px solid #e2e2e4;
  padding: 20px;
  border-radius: 2px;
}
.popupContent>div>img{
  width: 100%;
  margin-bottom: 20px;
  border-radius: 2px;
}
.popupContent>div>p{
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  color: #7f7f7f;

}
.footer {
  width: 100%;
  background: linear-gradient(104deg, #D5A971 1%, #A47052 101%), #A47052;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .wrap{
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  padding: 54px 0;
}
.footer .wrap .left{
  display: flex;
  flex-direction: column;
}
.footer .wrap .left>div:first-of-type>img{
  width: 302px;
}
.footer .wrap .left>div:last-of-type{
  display: flex;
  gap: 24px;
  margin-top: 33px;
}
.footer .wrap .left>div:last-of-type>div{
  display: flex;
  flex-direction: column;
}
.footer .wrap .left>div:last-of-type>div>img{
  width: 139px;
  height: 139px;
}
.footer .wrap .left>div:last-of-type>div>p{
  font-size: 16px;
  height: 20px;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-align: center;
}
.footer .wrap .left>div:last-of-type>div>span{
  font-size: 18px;
  font-weight: normal;
  line-height: 18px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-top: 12px;
  text-align: center;
}
.footer .right{
  display: flex;
  gap: 89px;
  margin-left: 124px;
}
.footer .problem,.statement,.contact{
  display: flex;
  flex-direction: column;
}
.footer .title{
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-bottom: 45px;
}
.footer .list{
  display: flex;
  flex-direction: column;
  gap: 39px;
  flex-wrap: wrap;
  max-height: 220px;
}
.footer .list a{
  font-size: 14px;
  font-weight: normal;
  line-height: 14px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
.footer .contact .list{
  flex-wrap: nowrap;
  gap: 15px;
}
.footer .list .item{
  width: 345px;
  font-size: 14px;
  font-weight: normal;
  line-height: 14px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  padding-bottom: 15px;
  display: flex;
}
.footer .list .item:not(:last-of-type){
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
}
.footer .list .item img{
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.footer .list .item span{
  flex: 1;
  line-height: 19.6px;
}
.copyright{
  font-size: 14px;
  font-weight: normal;
  line-height: 14px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  padding: 32px 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .wrap{
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .wrap{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 768px) {
  .wrap{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .footerRight {
    text-align: left;
    margin-top: 20px;
  }
}
@media (max-width: 1200px) {
  .logo{
    width: 100px;
    margin-left: 10px;
  }
  .menu {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    z-index: 999;
    width: 120px;
    height: 60px;
    transition: height 0.5s;
    overflow: hidden;
    background-color: #fff;
  }
  
  .menu .active {
    color: #183C85;
    border: none;
  }
  .menu>.active::after{
    display: none;
  }
  
  .menu>.menu-item {
    width: 100%;
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #333333;
    font-size: 14px;
  }
  .menu .lang {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
  }
  .switch{
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 20px;
  }
  .menu:hover{
    height: 380px;
    overflow: visible;
  }
}