* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);/
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
::-webkit-scrollbar:horizontal  {
  height: 10px;
}
::-webkit-scrollbar:vertical {
  width: 10px;
}

.d-none {
  display: none;
}

#globalLoading {
  transition: opacity 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 58, 64, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.message {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fef2f2;
  color: #d32f2f;
  border: 1px solid #f8d7da;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: top 0.3s ease;
  z-index: 9999;
}
.message .icon {
  font-size: 18px;
}

/* Header Section */
.container-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  background: #FFFFFF;
  background-image: url(../img/header-bg.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  border: 1.2px solid #F5F5F5
}
.container-header-box {
  margin: 0 auto;
  width: 1200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-box-logo {
  width: 230px;
  height: auto;
}
.header-box-logo img {
  width: 100%;
  height: 100%;
}
.header-box-menu {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-box-menu .logo {
  display: none;
}
.header-box-menu a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  line-height: 23.44px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
  transform: color 0.3s ease;
  -webkit-transform: color 0.3s e;
  -moz-transform: color 0.3s e;
  -ms-transform: color 0.3s e;
  -o-transform: color 0.3s e;
}
.header-box-menu a:hover {
  color: #808F38;
}
.header-box-btn {

}
.header-box-btn .contact {
  cursor: pointer;
  width: 170px;
  height: 50px;
  font-size: 20px;
  font-weight: 300;
  line-height: 23.44px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  background: #A9A41D;
  box-shadow: 0px 10px 40px -10px #A9A41D33;
  border: none;
  outline: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  transform: scale 0.3s ease;
  -webkit-transform: scale 0.3s ease;
  -moz-transform: scale 0.3s ease;
  -ms-transform: scale 0.3s ease;
  -o-transform: scale 0.3s ease;
}
.header-box-btn .contact:hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}
.header-box-btn .menu {
  display: none;
}

/* Main Section */
.container-main {
  padding: 90px 0 40px;
  margin: 0 auto;
  width: 1200px;
  min-height: calc(100% - 398px);
}
.container-main-h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 46.88px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
}
.container-main-h1 span {
  color: #A9A41D;
}
.container-main-p {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 300;
  line-height: 19.92px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.container-main-p a,
.container-main-p span {
  font-size: 17px;
  font-weight: 300;
  line-height: 19.92px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #BCBCBC;
}
.container-main-p a {
  cursor: pointer;
  text-decoration: none;
}

/* Footer Section */
.container-footer {
  width: 100%;
}
.container-footer-bg {
  width: 100%;
  height: 196px;
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.container-footer-box {
  width: 100%;
  background-image: url(../img/footer-bg2.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #000000;
}
.footer-box-content {
  margin: 0 auto;
  width: 1200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-box-logo {
  width: 230px;
  height: auto;
}
.footer-box-logo img {
  width: 100%;
  height: 100%;
}
.footer-box-menu {
  display: flex;
  align-items: center;
  gap: 90px;
}
.footer-box-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 21.1px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  transform: color 0.3s ease;
  -webkit-transform: color 0.3s e;
  -moz-transform: color 0.3s e;
  -ms-transform: color 0.3s e;
  -o-transform: color 0.3s e;
}
.footer-box-menu a:hover {
  color: #808F38;
}

/* Download Button Section */
.downloadBtn {
  cursor: pointer;
  width: auto;
  height: 44px;
  border: none;
  outline: none;
  background-color: #6B72B0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transform: scale 0.3s ease;
  -webkit-transform: scale 0.3s ease;
  -moz-transform: scale 0.3s ease;
  -ms-transform: scale 0.3s ease;
  -o-transform: scale 0.3s ease;
  display: flex;
}
.downloadBtn:hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}
.downloadBtn p {
  flex: 1;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.1px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
}
.downloadBtn span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #646AA5;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
}
.downloadBtn span img {
  width: 26px;
  height: 26px;
}

@media screen and (max-width: 1440px) {
  /* Header Section */
  .container-header-box {
    width: 1100px;
    height: 90px;
  }
  .header-box-logo {
    width: 220px;
  }
  .header-box-menu {
    gap: 50px;
  }
  .header-box-menu a {
    font-size: 20px;
    line-height: 23px;
  }
  .header-box-btn .contact {
    width: 170px;
    height: 50px;
    font-size: 20px;
    line-height: 23px;
  }
  
  /* Main Section */
  .container-main {
    padding: 80px 0 40px;
    width: 1100px;
    min-height: calc(100% - 378px);
  }
  .container-main-h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
  }
  .container-main-p {
    margin-top: 10px;
    font-size: 17px;
    line-height: 19px;
    gap: 3px;
  }
  .container-main-p a,
  .container-main-p span {
    font-size: 17px;
    line-height: 19px;
  }

  /* Footer Section */
  .container-footer-bg {
    width: 100%;
    height: 196px;
  }
  .footer-box-content {
    width: 1100px;
    height: 90px;
  }
  .footer-box-logo {
    width: 220px;
  }
  .footer-box-menu {
    gap: 80px;
  }
  .footer-box-menu a {
    font-size: 18px;
    line-height: 21px;
  }

  /* Download Button Section */
  .downloadBtn {
    height: 44px;
  }
  .downloadBtn p {
    padding: 0 20px;
    font-size: 18px;
    line-height: 21px;
  }
  .downloadBtn span {
    width: 44px;
    height: 44px;
  }
  .downloadBtn span img {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 1200px) {
  /* Header Section */
  .container-header-box {
    width: 900px;
    height: 80px;
  }
  .header-box-logo {
    width: 180px;
  }
  .header-box-menu {
    gap: 30px;
  }
  .header-box-menu a {
    font-size: 18px;
    line-height: 20px;
  }
  .header-box-btn .contact {
    width: 150px;
    height: 45px;
    font-size: 18px;
    line-height: 20px;
  }
  
  /* Main Section */
  .container-main {
    padding: 70px 0 30px;
    width: 900px;
    min-height: calc(100% - 302px);
  }
  .container-main-h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .container-main-p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 16px;
    gap: 3px;
  }
  .container-main-p a,
  .container-main-p span {
    font-size: 14px;
    line-height: 16px;
  }

  /* Footer Section */
  .container-footer-bg {
    width: 100%;
    height: 140px;
  }
  .footer-box-content {
    width: 900px;
    height: 80px;
  }
  .footer-box-logo {
    width: 180px;
  }
  .footer-box-menu {
    gap: 40px;
  }
  .footer-box-menu a {
    font-size: 16px;
    line-height: 18px;
  }

  /* Download Button Section */
  .downloadBtn {
    height: 40px;
  }
  .downloadBtn p {
    padding: 0 16px;
    font-size: 16px;
    line-height: 21px;
  }
  .downloadBtn span {
    width: 40px;
    height: 40px;
  }
  .downloadBtn span img {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 968px) {
  /* Header Section */
  .container-header-box {
    width: calc(100% - 30px);
    height: 64px;
  }
  .header-box-logo {
    width: 132px;
  }
  #menuBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transform: all 0.3s ease;
    -webkit-transform: all 0.3s ease;
    -moz-transform: all 0.3s ease;
    -ms-transform: all 0.3s ease;
    -o-transform: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 199;
}
  .header-box-menu {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    max-width: 300px;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }
  .header-box-menu .logo {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
  .header-box-menu .logo img {
    width: 100%;
    height: 100%;
  }
  #menuBox.active {
    opacity: 1;
    visibility: visible;
  }
  
  .header-box-menu.active {
    transform: translateX(200%);
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
}
  .header-box-menu a {
    font-size: 18px;
    line-height: 20px;
  }
  .header-box-btn {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header-box-btn .contact {
    width: 70px;
    height: 30px;
    font-size: 13px;
    line-height: 15px;
  }
  .header-box-btn .menu {
    cursor: pointer;
    display: block;
    border: none;
    background: none;
  }
  .header-box-btn .menu img {
    width: 16px;
    height: auto;
  }
  
  /* Main Section */
  .container-main {
    padding: 36px 0 20px;
    width: calc(100% - 30px);
    min-height: calc(100% - 310px);
  }
  .container-main-h1 {
    font-size: 20px;
    line-height: 24px;
  }
  .container-main-p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 14px;
    gap: 3px;
  }
  .container-main-p a,
  .container-main-p span {
    font-size: 12px;
    line-height: 14px;
  }

  /* Footer Section */
  .container-footer-bg {
    width: 100%;
    height: 90px;
  }
  .footer-box-content {
    padding: 28px 0;
    width: calc(100% - 120px);
    height: auto;
    flex-direction: column;
    gap: 24px;
  }
  .footer-box-logo {
    width: 132px;
  }
  .footer-box-menu {
    gap: 14px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-box-menu a {
    font-size: 14px;
    line-height: 16px;
  }

  /* Download Button Section */
  .downloadBtn {
    height: 36px;
  }
  .downloadBtn p {
    padding: 0 12px;
    font-size: 14px;
    line-height: 18px;
  }
  .downloadBtn span {
    width: 36px;
    height: 36px;
  }
  .downloadBtn span img {
    width: 20px;
    height: 20px;
  }
}