* {
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
  margin: 0;
}
body .wrapper1 {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: rgb(255, 255, 255);
}
body .wrapper1 .nav-bar {
  max-width: 1400px;
  margin: auto;
}
body .wrapper1 .nav-bar .header {
  display: flex;
  justify-content: space-between;
  padding: 4px 12px;
  align-items: center;
}
body .wrapper1 .nav-bar .header .h1-top {
  margin: 0;
  font-size: 12px;
  color: rgb(35, 82, 124);
  font-size: 24px;
  letter-spacing: 3px;
}
body .wrapper1 .nav-bottom {
  background: linear-gradient(119.54deg, #000046, #1cb5e0);
}
body .wrapper1 .nav-bottom .sa {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
}
body .wrapper1 .nav-bottom .sa .t {
  gap: 12px;
}
body .wrapper1 .nav-bottom .sa span {
  display: flex;
  flex-direction: row;
}
body .wrapper1 .nav-bottom .sa span b {
  color: aliceblue;
}
body .wrapper1 .nav-bottom .sa span select {
  color: #fdfdff;
  background-color: rgb(26, 168, 213);
  border-style: none;
  outline: 0;
  text-align: end;
}
body .wrapper1 .nav-bottom .sa span select option {
  margin: 0;
  color: rgb(4, 4, 4);
  background-color: white;
  font-size: 12px;
  text-align: end;
}
body .main-wrapper {
  width: 100%;
  background-image: url(/image/Blue_BackGround_3.025d7a67.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 35%;
}
body .main-wrapper .main-slid {
  max-width: 1400px;
  padding: 4px 12px;
  margin: auto;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .main-wrapper .main-slid .left {
  width: 100%;
}
body .main-wrapper .main-slid .left h1 {
  margin-top: 1px;
  color: white;
  font-size: 44px;
}
body .main-wrapper .main-slid .left p {
  margin: 0;
  color: white;
}
body .main-wrapper .main-slid .right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 16px;
}
body .main-wrapper .main-slid .right .box {
  height: 200px;
  width: 100%;
  border-radius: 8px;
  background-color: azure;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 12px;
}
body .main-wrapper .main-slid .right .box img {
  width: 98px;
  height: 109px;
}
body .main-wrapper .main-slid .right .box span {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
body .main-wrapper .main-slid .right .box span a {
  text-decoration: none;
  background-image: linear-gradient(
    to right,
    rgb(2, 13, 81),
    rgb(25, 176, 220)
  );
  color: white;
  font-weight: bold;
  height: 42px;
  width: 100%;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
}
body .main-wrapper .main-slid .right .box span p {
  margin: 0;
  padding: 0;
  font-size: 12px;
}
body .main-wrapper .lang {
  display: flex;
  flex-direction: row;
  max-width: 1400px;
  margin: auto;
  align-items: center;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  grid-gap: 8px;
}
body .main-wrapper .lang a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-align: center;
}
body .card-wrapper section {
  display: flex;
  flex-wrap: wrap;
}
body .card-wrapper section .card {
  padding: 16px;
}
body .card-wrapper section .card .card-scroll {
  border-radius: 12px;
  box-shadow: 0 2px 5px -1px rgba(50, 50, 93, 0.25),
    0 1px 3px -1px rgba(0, 0, 0, 0.3);
  position: relative;
  top: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0 16px;
  overflow: hidden;
  height: 100%;
}
body .card-wrapper section .card .card-scroll .top {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body .card-wrapper section .card .card-scroll .top img {
  height: 40px;
  margin: 16px 10px 16px 0;
}
body .card-wrapper section .card .card-scroll .top span h3 {
  margin: 0;
}
body .card-wrapper section .card .card-scroll .top span p {
  margin: 0;
}
body .card-wrapper section .card .card-scroll .top .arrow {
  height: 30px;
  position: absolute;
  bottom: -40px;
  transition: all 0.3s ease;
  width: 100%;
  left: 70%;
}
body .card-wrapper section .card .card-scroll .top :hover {
  top: -60px;
}

@media only screen and (min-width: 600px) {
  body .wrapper .nav-bar header .h1-top {
    color: rgb(35, 82, 124);
    font-size: 24px;
  }
  body .wrapper .nav-bottom .sa {
    margin: auto;
  }
  body .wrapper .nav-bottom .sa span {
    display: flex;
    flex-direction: row;
  }
  body .wrapper .nav-bottom .sa span b {
    color: aliceblue;
  }
  body .wrapper .nav-bottom .sa span select {
    color: #fdfdff;
    background-color: rgb(26, 168, 213);
    border-style: none;
    outline: 0;
    text-align: end;
  }
  body .wrapper .nav-bottom .sa span select option {
    margin: 0;
    color: rgb(4, 4, 4);
    background-color: white;
    font-size: 12px;
    text-align: end;
  }
  body .main-wrapper .main-slid {
    flex-direction: row;
    display: flex;
    background-position: 100%;
  }
  body .main-wrapper .main-slid .left {
    width: 50%;
    padding: 0 120px 0 12px;
  }
  body .main-wrapper .main-slid .left h1 {
    font-size: 54px;
  }
  body .main-wrapper .main-slid .right {
    width: 50%;
    padding: 0;
  }
  body .main-wrapper .main-slid .right .box {
    height: 350px;
    width: 300px;
  }
  body .main-wrapper .main-slid .right .box img {
    width: 170px;
    height: 190px;
  }
  body .main-wrapper .lang {
    justify-content: space-between;
    display: flex;
    padding: 26px 38px;
  }
  body .card-wrapper section {
    display: flex;
    flex-wrap: wrap;
  }
  body .card-wrapper section .card {
    flex: 0 0 33.3333%;
    padding: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  body .card-wrapper section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
  }
  body .card-wrapper section .card {
    flex: 0 0 25%;
    padding: 16px;
  }
} /*# sourceMappingURL=style.css.map */
