/*default form variables*/
/*theme base variables*/
/*default colors*/
/*theme base colors*/
/* media query mixins */
*, *:before, *:after {
  box-sizing: inherit;
}

* {
  outline: none;
}

a {
  color: currentColor;
  text-decoration: none;
  color: #333;
  height: 10px;
}

body, html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-size: 1.3rem;
  font-family: "Open Sans", sans-serif, system-ui;
  color: #010101;
}

.wrapper {
  position: relative;
  padding: 20px;
}

/* For main media query container set width */
.mq-container {
  clear: fix;
  margin: 0 auto;
  position: relative;
  width: 1400px;
}
@media (max-width: 767px) {
  .mq-container {
    width: 94%;
  }
}
@media (min-width: 768px) {
  .mq-container {
    width: 710px;
  }
}
@media (min-width: 960px) {
  .mq-container {
    width: 940px;
  }
}
@media (min-width: 1280px) {
  .mq-container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .mq-container {
    width: 1400px;
    width: 70%;
  }
}
input[type=text].mh--formItem,
input[type=tel].mh--formItem,
input[type=email].mh--formItem,
input[type=password].mh--formItem {
  background: #fff;
  color: #010101;
  font-size: 16px;
  height: 40px;
  padding: 10px;
  display: block;
  font-weight: normal;
  border: 1px solid #3c3e45;
  box-sizing: border-box;
  border-radius: 3px;
  transition: 0.2s ease-in;
  width: 100%;
  max-width: 400px;
}
input[type=text].mh--formItem:placeholder,
input[type=tel].mh--formItem:placeholder,
input[type=email].mh--formItem:placeholder,
input[type=password].mh--formItem:placeholder {
  color: #666;
}
input[type=text].mh--formItem:focus,
input[type=tel].mh--formItem:focus,
input[type=email].mh--formItem:focus,
input[type=password].mh--formItem:focus {
  border-color: #3c3e45;
  color: #0d0d0e;
  outline: none;
}
input[type=text].mh--formItem.disabled, .disabled input[type=text].mh--formItem, input[type=text].mh--formItem[disabled=disabled],
input[type=tel].mh--formItem.disabled,
.disabled input[type=tel].mh--formItem,
input[type=tel].mh--formItem[disabled=disabled],
input[type=email].mh--formItem.disabled,
.disabled input[type=email].mh--formItem,
input[type=email].mh--formItem[disabled=disabled],
input[type=password].mh--formItem.disabled,
.disabled input[type=password].mh--formItem,
input[type=password].mh--formItem[disabled=disabled] {
  opacity: 0.5;
  cursor: default;
}

input::-ms-clear {
  display: none;
}

select.mh--formItem {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: url("./public/assets/images/dd.svg");
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 1.125rem;
  padding-right: 50px;
  min-width: 16em;
  width: 100%;
  max-width: 400px;
  height: 40px;
  border-color: #3c3e45;
  border-radius: 3px;
}

textarea.mh--formItem {
  min-height: 70px;
  max-height: 300px;
  resize: none;
  border-color: #3c3e45;
  border-radius: 3px;
  padding: 10px;
  width: 100%;
  max-width: 400px;
}

input[type=text].invalid, input[type=password].invalid, textarea.invalid, select.invalid {
  border: 1px solid #ed3332 !important;
  color: #eb1c1b !important;
  background-color: white;
}

label {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0;
  border: none;
}
label.error, .error label {
  color: #ed3332;
}

input[type=checkbox],
input[type=radio] {
  width: 20px;
  margin: 0;
}

header {
  background-color: #010101;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 5;
}
header .mq-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
@media (max-width: 767px) {
  header .mq-container {
    flex-direction: column;
  }
}
header .mq-container .logo {
  width: 270px;
}
@media (min-width: 768px) and (max-width: 959px) {
  header .mq-container .logo {
    width: 200px;
  }
}
@media (max-width: 767px) {
  header .mq-container .logo {
    width: 120px;
  }
}
header .mq-container .logo img {
  width: 100%;
}
header .mq-container .right-actions {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header .mq-container .right-actions {
    flex-direction: column;
  }
}
header .mq-container .right-actions a {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  line-height: 1;
  text-decoration: none;
  color: currentColor;
  transition: 0.3s ease-in;
}
header .mq-container .right-actions a strong {
  margin-right: 10px;
}
header .mq-container .right-actions a:last-child {
  padding-right: 0;
}
header .mq-container .right-actions a img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  header .mq-container .right-actions a {
    margin-top: 4px;
  }
}
header .mq-container .right-actions a:hover {
  color: #ed3332;
}
header .mq-container .right-actions a:not(:last-child) {
  border-right: 1px solid #24252a;
}
@media (max-width: 767px) {
  header .mq-container .right-actions a:not(:last-child) {
    border-right: 0;
  }
}

footer {
  background-color: #010101;
  padding: 20px;
}
footer .mq-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .mq-container cite {
  font-style: normal;
  color: #fff;
  text-align: center;
  margin: 0;
}

.page-loader {
  background: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  font-weight: bold;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5vw;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.page-head {
  background: url("../images/page-head-bg.jpg") center/cover no-repeat;
  min-height: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-head-main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/hero-image.jpg");
  min-height: 20vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100vh - 138px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-head-main .title-desc {
  width: 1280px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px;
}

.page-head-main .title-desc h1,
.page-head-main .title-desc p {
  color: #fffffd;;
  margin: 0;
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.page-head-main .title-desc p.detail {
  font-weight: 700;
  font-family: "Archivo", sans-serif;
}

.page-head-main .title-desc .btn.fb-icon a {
  background-image: url('../images/icon_sprite_histren.png');
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  background-position: 4px -187px;
}

.page-head-main .title-desc .btn.learn-more a  {
  color: #fff;
  text-decoration: underline;
}

.page-head-main .title-desc .btn.learn-more a:hover  {
  color: #ed3332;
  text-decoration: none;
}

.page-head-main .title-desc .btn.fb-icon  {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .page-head-main .title-desc h1 {
    font-size: 3vw;
    margin-bottom: 40px;
  }

  .page-head-main .title-desc h1 sup {
    top: -1em;
    font-size: 20px;
  }

  .page-head-main .title-desc p {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 40px;
  }

  .page-head-main .title-desc p.detail {
    font-size: 22px;
    line-height: 34px;
  }
}

@media (max-width: 767px) {
  
  .page-head-main .title-desc {
    width: auto;
    padding: 0 15px;
  }

  .page-head-main .title-desc h1 {
    margin-bottom: 40px;
  }

  .page-head-main .title-desc h1 sup {
    top: -0.5em;
    font-size: 14px;
  }

  .page-head-main .title-desc p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .page-head-main .title-desc .btn.fb-icon {
    position: relative;
  }

  .page-head-main .title-desc .btn.fb-icon a {
    position: absolute;
    top: -6px;
  }
  
}


@media (max-width: 542px) {
  
  .page-head-main {  
    height: calc(100vh - 173px);
  }
  
}

@media only screen and (max-width: 767px) and (min-width: 543px)  {

  .page-head-main {  
    height: calc(100vh - 158px);
  }
  
}




@media (max-width: 767px) {
  .page-head {
    min-height: 30vw;
  }
}
.page-head h1 {
  color: #e9f2f7;
  margin: 0;
  font-size: 4vw;
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
  .page-head h1 {
    font-size: 6vw;
  }
}

.legacy-content {
  padding: 4vw 0;
}
.legacy-content section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5vw;
  padding: 1vw 0;
}
@media (max-width: 959px) {
  .legacy-content section {
    padding: 3.4vw 0;
  }
}
.legacy-content section:nth-last-child(odd) {
  flex-flow: row-reverse;
}
.legacy-content section aside {
  width: 43vw;
}
@media (max-width: 959px) {
  .legacy-content section aside {
    width: 50vw;
  }
}
.legacy-content section aside h2 {
  font-size: 4vw;
  margin: 0 0 1.5vw;
  font-family: "Montserrat", sans-serif, Helvetica;
}
.legacy-content section aside p {
  margin: 0;
  color: #3c3e45;
}
@media (max-width: 767px) {
  .legacy-content section aside p {
    font-size: 3vw;
    line-height: 3.6vw;
  }
}
@media (min-width: 768px) {
  .legacy-content section aside p {
    font-size: 1.7vw;
    line-height: 2.3vw;
  }
}
@media (min-width: 1922px) {
  .legacy-content section aside p {
    font-size: 2vw;
    line-height: 2.6vw;
  }
}
.legacy-content section figure {
  margin: 0;
  width: 57vw;
}
.legacy-content section figure.video-2024 {
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
@media (max-width: 767px) {
  .legacy-content section figure {
    width: 50vw;
  }
}
.legacy-content section figure img, .legacy-content section figure video {
  width: 100%;
}