@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: SVN-Gilroy;
  src: url(../fonts/SVN-Gilroy\ Medium.otf);
}

:root {
  --cTextHeader: #fff;
  --bgcHeader: #fff;
}

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: inline-block;
  max-width: 100%;
}

/* Layout */
body {
  padding: 0 20px;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
}


body::-webkit-scrollbar {
  display: none;
}

/* Grid */
.row {
  display: flex;
  align-items: center;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

/* Header Top */

header.header-2 {
  padding-top: 24px;
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;
  background-color: white;
  color: white;
  z-index: 99;
}

  header.header-2 .pages {
    border-radius: 100px;
    background-color: rgba(0, 7, 26, 1);
    width: 100%;
    height: 40px;
    padding: 0 20px;
  }

@media screen and (min-width:1199px) {
  header.header-2 .pages {
    height: 80px;
  }
}

@media screen and (min-width:992px) {
  header.header-2 .pages {
    padding: 0 120px;
  }
}

header.header-2 ul li {
  display: block;
}

/* header.header-2 ul li:not(:last-child) {
margin-right: 56px;
} */

header.header-2 ul li.current_page {
  position: relative;
}

header.header-2 ul li.current_page::after {
  content: '';
  top: 110%;
  left: 50%;
  height: 2px;
  width: 100%;
  position: absolute;

  border-radius: 16px;
  transform: translateX(-50%);
  background-color: rgba(14, 168, 218, 1);
}

header.header-2 ul {
  list-style: none;
}

header.header-2 ul li a {
  color: white;
  text-decoration: none;
}

header.header-2 .laguages img {
  margin-right: 8px;
}

.nav-links {
  /* display: flex; */
  list-style: none;
  transition: all 0.3s ease;
  align-items: center;
}

@media screen and (min-width:992px) {
  .nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
    align-items: center;
  }
}

.lang-switch a span {
  color: #fff;
}

footer {
  height: 103px;
  /* padding: 0 20px; */
}

@media screen and (min-width:1200px) {
  footer {
    padding: 0 20px;
  }
}

@media screen and (max-width: 991px) {
  .logo {
    display: none;
  }
}

footer {
  width: 100%;
  color: #fff;
  border-radius: 16px;
}


footer .footer_wrapper {
  padding: 20px;
  background: url(../images/footer.jpg) center center / cover;
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

@media screen and (min-width: 1200px) {
  footer .footer_wrapper {
    padding: 20px 0;
    border-radius: 16px;
  }

  footer .footer_wrapper::before {
    border-radius: 16px;
  }
}

.footer_form {
  display: flex;
  align-items: center;
}

footer .footer_wrapper::before {
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
}

.footer_content {
  /* position: absolute; */
  z-index: 1;
  height: inherit;
  width: 100%;
  /* padding: 20px; */
  display: flex;
  gap: 20px;
  flex-direction: column;

}

.copyright {
  /* padding-bottom: 5px; */
}

@media screen and (min-width:1200px) {
  .copyright {
    margin-top: 16px;
  }
}

@media screen and (min-width:992px) {

  .footer_content>div:first-child {
    padding-bottom: 0;
  }

  .footer_content {
    padding: 0 95.5px;
    flex-direction: row;
    align-items: center;
  }
}

.footer_content>div {
  flex: 1;
}

footer img {
  width: 113px;
  height: 64px;
}

.copyright {
  font-size: 14px;
  font-weight: 100;
}

footer form {
  background-color: #fff;
  border-radius: 10px;
  max-width: 100%;
  padding: 12px 8px;
}

footer form input {
  border: 0;
  outline: none;
  height: 26px;
  padding-left: 8px;
}

/* list news */
#list_new li {
  padding: 8px 16px;
  height: 35px;
  display: inline-block;
  border-radius: 30px;
  color: rgba(0, 0, 0, 1);
  background-color: rgba(14, 168, 218, 1);
}

/* News */
.wrapper_news {
  max-width: 1000px;
  padding: 0 25px;
}

.wrapper_news,
.wrapper_contact {
  margin-top: 40px;
  margin-bottom: 75px;
  margin-left: auto;
  margin-right: auto;
}


.wrapper_news .main_content .time {
  padding: 16px 0 4px;
  line-height: 16px;
}

.wrapper_news .main_content .title {
  padding: 4px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.wrapper_news .main_content .detail {
  padding-top: 24px;
  padding-bottom: 56px;
  line-height: 1.65;
}

.wrapper_news .main_content .detail>* {
  padding-bottom: 16px;
  color: rgba(103, 103, 103, 1);
}





.posR {
  position: relative;
}

.posA {
  position: absolute;
}


/* alert susscess-error */
.alert {
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.alert-success {
  background-color: #e6f9ed;
  border: 1px solid #28a745;
  color: #155724;
}

.alert-error {
  background-color: #fdecea;
  border: 1px solid #dc3545;
  color: #721c24;
}

.alert-error ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.alert-error li {
  margin-bottom: 4px;
}

.nav-links.show {
  display: flex;
  /* margin-top: -20px; */
  /* height: calc(100vh + 20px); */
}

.lang-switch a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

@media screen and (min-width:991px) {
  .lang-switch {
    font-size: 16px;
  }
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-switch i {
  color: #00bfff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}