:root {
  --primary-color: #0052d9;
  --primary-linear-gradient: #0052d9;
  --sec-color: #3c98ff;
  --thr-color: #3894fe;
  --primary-font-color: #282d3c;
  --desc-font-color: #545968;
  --desc-font-color1: #333333;
  --desc-font-color2: #999999;
  --primary-bg: #0052d9;
  --nav-color: #2e3e5c;
  --font-size-16px: 16px;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background-color: #fff;
  min-width: 1163px;
}
ul,
ol,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--nav-color);
}
button {
  border: none;
  outline: none;
  background-color: #fff;
  font-size: 1em;
  cursor: pointer;
}
.wrapper {
  width: 1163px;
  min-width: 1163px;
  margin: 0 auto;
}

@media screen and (min-width: 1920px) {
  .wrapper {
    /* width: 1440px; */
  }
  .banner > img{
    width: 100%;
    object-fit: cover !important;
  }
}
