:root {
  box-sizing: border-box;
  --color-main:rgba(255, 215, 0, 1);
  --color-help:rgba(255, 159, 67, 1);
  --color-help2:rgba(255, 87, 51, 1);
  --color-main-2:rgb(255, 253, 231);
  --color-help-2:rgba(255, 159, 67, 0.2);
  --back-main-color1:rgba(255, 255, 255, 1);
  --back-main-color2:rgba(249, 250, 251, 1);
  --text-color-main:#000;
  --text-color-help:#49494b;
  --footer-color:rgba(17, 24, 39, 1) ;
}

* {
  position: relative;
  margin: 0;
  padding: 0;
}

ul,
li,
dl,
dd,
dt {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #1c1200;
}

h2 {
  font-size: 22px;
}

img {
  width: 100%;
  height: auto;
  border: none;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  line-height: initial;
  color: var(--text-color-main);
  background: var(--back-main-color1);
  overflow: hidden;
}

body > * {
  width: 100%;
}

.content {
  width: 85%;
  margin: 0 auto;
}

input,
button {
  border: none;
  outline: none;
  background-color: none;
}

.article {
  text-indent: 2em;
}

.light-text {
  color: var(--color-main) !important;
}

.title {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 50px 0 20px 0;
  margin-bottom: 40px;
}
.title h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.title .p {
  font-size: 18px;
  text-align: center;
  color: var(--text-color-help);
}
.title h1::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 4px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}

.left {
  width: 45%;
}

.right {
  width: 45%;
}

.text-left {
  text-align: left !important;
}

/* content */
nav {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  transition: all 0.3s ease;
}
nav .logo {
  display: flex;
  align-items: center;
  color: var(--color-main);
  font-size: 24px;
}
nav .logo img {
  height: 60px;
}
nav .logo span {
  display: inline-block;
  min-width: 200px;
}
nav .nav-container {
  display: flex;
}
nav .nav-container li {
  padding: 0 20px;
}
nav .operation {
  display: flex;
  align-items: center;
}
nav .operation .a1 {
  background: url(../images/pc/ic-wt-1.png) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 20px;
}
nav .operation .a1:hover {
  background-image: url(../images/pc/ic-wt-2.png);
}
nav .operation .a2 {
  background-color: var(--color-main);
  padding: 8px 25px;
  border-radius: 6px;
  font-weight: bold;
}

nav.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.3s ease;
  z-index: 99999;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 0 10px rgb(219, 219, 219);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.navbar {
  background-color: #333;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-main);
  font-size: 24px;
  cursor: pointer;
}

.nav-menu {
  position: fixed;
  z-index: 99999;
  height: 100vh;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  background-color: #444;
  text-align: right;
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  padding: 10px;
  border-bottom: 1px solid #555;
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu a {
  color: white;
  text-decoration: none;
}

footer .top {
  background-color: var(--color-main);
  padding: 5% 0;
  text-align: center;
  color: #fff;
}
footer .top h1 {
  padding: 25px 0;
}
footer .top p {
  font-weight: 100;
}
footer .top .buttons {
  margin: 30px 0;
}
footer .top .buttons button {
  padding: 15px 30px;
  margin: 0 10px;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--color-main);
  border: 2px solid #fff;
  color: #fff;
}
footer .top .buttons button.action {
  background-color: rgb(255, 255, 255);
  color: var(--color-main);
}
footer .bottom {
  background-color: #111827;
  padding: 30px 100px;
  color: #788194;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .bottom .light-text {
  font-size: 22px;
  letter-spacing: 0.1em;
}
footer .bottom a {
  color: #788194;
  font-size: 16px;
}
footer .bottom h2 {
  color: #fff;
}
footer .bottom img {
  width: 25px;
}
footer .bottom .theme {
  margin-bottom: 20px;
}
footer .bottom li {
  margin: 10px 0;
}
footer .bottom .row {
  display: flex;
  align-items: center;
}
footer .bottom .row img {
  margin-right: 10px;
}
footer .bottom .email-send {
  position: relative;
  background-color: #1f2937;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}
footer .bottom .email-send input {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
}
footer .bottom .email-send button {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50px;
  background: url(../images/pc/icon-12.png), var(--color-main);
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
}
footer .bottom .item1 p {
  margin: 20px 0;
}
footer .bottom .item1 ul {
  display: flex;
}
footer .bottom .item1 li {
  margin: 0 10px;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
footer .copy {
  width: 100%;
  text-align: center;
  padding: 2% 0 1% 0;
  border-top: 2px solid #18202f;
  background-color: #111827;
  color: #788194;
}

.video-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://picsum.photos/640/360");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.video-cover img {
  width: 100px;
  height: 100px;
  opacity: 0.8;
}

.play-button {
  font-size: 60px;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.play-button:hover {
  opacity: 1;
}/*# sourceMappingURL=public.css.map */