:root {
  --font2: "Noticia Text", serif;
  --transition: all 0.2s linear;
}

/* @font-face {
  font-family: helvetica;
  src: url("./fonts/helvetica-w01-roman.woff2") format("truetype");
  font-display: swap;
} */

/* all  */
.space {
  height: 500px;
  background-color: var(--white);
}

.box404 {
  height: 600px;
  width: 100%;
  position: relative;
  margin-top: 80px;
}

.box404 .adm-glyphicon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.box404 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

html,
body {
  /* font-family: "helvetica", serif; */
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  font-weight: 400;
  scroll-behavior: smooth;
}

body {
  top: 0px !important;
}

body.over {
  position: fixed !important;
  top: 0;
  width: 100%;
}

html.stop {
  overflow: hidden;
  -webkit-overflow-scrolling: hidden;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.svg-div {
  display: none;
}

.wrap {
  max-width: 970px;
  margin: 0 auto;
}

.adm-glyphicon span {
  background: url("./img/setting.png");
  background-size: cover;
  width: 12px;
  height: 12px;
  display: block;
}

.img-100 {
  position: relative;
  height: 0;
  overflow: hidden;
  display: block;
}

.img-100 img {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.img-100 iframe {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.wrap-img {
  padding-bottom: 100%;
}

button,
input,
a {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: unset;
  font-weight: unset;
  margin: 0px;
  padding: 0px;
}

a {
  transition: var(--transition);
  color: var(--text);
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--text);
}

input,
button,
textarea,
select {
  outline: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.seo-h1 {
  width: 0;
  height: 0;
  opacity: 0;
}

.mb-on7 {
  display: none !important;
}

.mb-on9 {
  display: none !important;
}

.mb-off7 {
  display: block;
}

.mb-off9 {
  display: block;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* all end  */

/* header  */
.header {
  background: var(--bg1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.header .h-logo {
  width: 275px;
  float: left;
  /* text-align: right; */
  height: 110px;
  line-height: 110px;
  text-align: center;
}

.header .h-menu {
  width: calc(100% - 770px);
  float: left;
  text-align: right;
  height: 110px;
  line-height: 110px;
}

.header .h-menu .lv1>li {
  display: inline-block;
  padding: 0px 5px;
  position: relative;
  transform: translateY(10px);
}

.header .h-menu .lv1>li>.link {
  font-size: 18px;
  font-family: var(--font2);
  font-weight: 600;
  color: var(--theme);
  display: block;
  line-height: 63px;
  position: relative;
  padding: 0 8px;
}

.header .h-menu .lv1>li>.link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme);
  transition: all 0.1s linear;
}

.header .h-menu .lv1>li>.link:hover::after,
.header .h-menu .lv1>.active>.link::after {
  height: 3px;
}

.header .h-menu .lv2 {
  /* display: none; */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.6);
  padding: 15px 10px 5px 10px;
  position: absolute;
  top: 100%;
  width: 300px;
  background: #ffffffc7;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.header .h-menu .lv1 li:hover .lv2 {
  opacity: 1;
  visibility: visible;
}

.header .h-menu .lv2 li {
  line-height: 26px;
  position: relative;
}

.header .h-menu .lv2 li .link {
  font-size: 18px;
  font-family: var(--font2);
  font-weight: 600;
  color: var(--bg2);
  display: block;
  padding: 10px 10px;
  text-align: left;
}

.header .h-menu .lv2 li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg2);
  height: 1px;
  transition: all 0.1s linear;
}

.header .h-menu .lv2 li:hover:after {
  height: 3px;
}

.header .h-search {
  width: 325px;
  float: left;
  height: 110px;
}

.header .h-search .h-search-in {
  width: fit-content;
  text-align: right;
  padding-top: 15px;
  margin: 0 auto;
}

.header .h-search .h-lang {
  margin-bottom: 0px;
}

.header .h-search .h-lang a {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.5);
  display: inline-block;
  border-radius: 5px;
  margin-left: 5px;
}

.header .h-login {
  float: left;
  width: 170px;
  height: 110px;
  background: var(--bg2);
  text-align: center;
  line-height: 110px;
  position: relative;
}

.header .h-login a {
  color: var(--white);
  font-family: var(--font2);
  font-weight: 500;
}

.header .h-login a svg {
  transform: translateY(5px);
  margin-right: 5px;
}

.header .h-search .h-search-input {
  max-width: 148px;
  position: relative;
}

.header .h-search .h-search-input input {
  width: 100%;
  height: 35px;
  border: 2px solid var(--bg2);
  border-radius: 30px;
  padding: 0 30px 0 10px;
}

.header .h-search .h-search-input button {
  position: absolute;
  background: transparent;
  border: none;
  top: 5px;
  right: 5px;
}

.header .h-search .menu-mb-btn {
  display: none;
  color: var(--theme);
}

.header .h-search .menu-mb-btn .mb_menu {
  display: block;
}

/* mobile menu  */
.menu-mb-box {
  position: fixed;
  width: 100%;
  z-index: 10000;
  top: 0;
  right: 0;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-mb-box.open {
  opacity: 1;
  visibility: visible;
}

.menu-mb-box .bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--theme);
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}

.menu-mb-box .mb-menu-div {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 85%;
  background: var(--theme);
  z-index: 2;
  padding: 30px 20px;
  overflow-y: auto;
}

.menu-mb-box .mb-menu-div .link-login {
  color: var(--white);
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}

.menu-mb-box .mb-menu-div .link-login svg {
  transform: translateY(4px);
  margin-right: 5px;
}

.menu-mb-box .mb-menu-div .child-lv1>li {
  position: relative;
}

.menu-mb-box .mb-menu-div .child-lv1>li>svg {
  position: absolute;
  right: 0px;
  top: 10px;
  transition: var(--transition);
}

.menu-mb-box .mb-menu-div .child-lv1>li.collapsed>svg {
  transform: rotate(0) scale(0.8);
}

.menu-mb-box .mb-menu-div .child-lv1>li>svg {
  transform: rotate(180deg) scale(0.8);
}

.menu-mb-box .mb-menu-div .child-lv1 .link {
  color: var(--white);
  font-size: 20px;
  display: block;
  margin: 0 0 10px;
  font-family: var(--font2);
  width: fit-content;
}

.menu-mb-box .mb-menu-div .child-lv1>.active>.link,
.menu-mb-box .mb-menu-div .child-lv1>li>.link:hover {
  color: #f7dbc8;
}

.menu-mb-box .mb-menu-div .child-lv2 {
  padding-left: 15px;
}

.menu-mb-box .mb-menu-div .child-lv2 .link {
  font-size: 16px;
}

.menu-mb-box .mb_close {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 10;
}

.menu-mb-box .mb_close svg {
  transform: scale(0.6);
  color: var(--white);
}

.mb-login-box {
  margin-bottom: 15px;
  position: relative;
}

.mb-login-box .logged-menu {
  top: 100%;
  right: unset;
  left: 0;
  z-index: 10;
}

/* header end */


/* language  */

.navbar-social-box .language_plugin {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 16px;
  padding: 0;
  position: relative;
  cursor: pointer;
  display: block;
  margin: 0 0 15px;
}

.navbar-social-box .language_plugin .show-country {
  display: inline-block;
  vertical-align: middle;
}

.navbar-social-box .language_plugin svg {
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.7);
}

.navbar-social-box .language_plugin span {
  font-size: 14px;
  color: var(--black);
  display: inline-block;
  font-weight: 500;
}

.navbar-social-box {
  position: relative;
  float: right;
  padding: 0px 0px;
  margin-left: 0px;
}

.navbar-social-box .language_plugin .lang-icon {
  margin-right: 7px;
  transform: translateY(6px);
}

.navbar-social-box .language_plugin .lang-nav {
  transform: translateY(8px);
  margin-left: 0px;
}

.navbar-social-box::after {
  content: url('img/nav-dropdown.svg');
  position: absolute;
  top: 13px;
  right: 0px;
  z-index: -1;
}

.navbar-social-box .show-country img {
  width: 30px;
  height: auto;
  margin-right: 5px;
}

.skiptranslate {
  display: none;
}

.header-right .language_plugin .country img {
  transform: translateY(-6px);
}

.country-list {
  position: absolute;
  top: 90px;
  right: 0px;
  z-index: 999;
  transition: 0.3s linear;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  background: var(--white);
}

.country-list .country-wrap {
  padding: 15px;
  box-shadow: 0px 4px 30px 0px #64646440;
  position: relative;
  width: 200px;
  background: #f5f5f5;
}

.country-list .country:not(:last-child) {
  margin-bottom: 15px;
}

.country-list .country {
  font-size: 16px;
  line-height: 24px;
  padding-left: 0;
  position: relative;
  cursor: pointer;
}

.country-list .country:hover {
  color: var(--background-hover);
}

.country-list .country img {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 20px; */
  /* margin-bottom: 10px; */
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
}

.country-list .country span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
}

.language_plugin.open+.country-list {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.navbar-social-box .language_plugin .lang-img {
  margin-right: 7px;
  transform: translateY(-2px);
}

.navbar-mb .navbar-mb-right .mb-lag-btn {
  cursor: pointer;
}

.navbar-mb .navbar-mb-right .mb-lag-btn.en svg {
  left: unset;
  right: 3px;
}

/* language end */

/* background head  */
.background-head {
  /* height: calc(100vh - 289px); */
  height: calc(100vh - 110px);
  position: relative;
  margin-top: 110px;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.background-head img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 100%;
}

.background-head .bg-head-text {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  left: 50%;
  color: var(--white);
  transform: translateX(-50%);
  text-align: center;
  width: 1000px;
  max-width: 100%;
}

.background-head .bg-head-text .title {
  font-size: 60px;
  font-family: var(--font2);
  font-weight: 600;
  margin: 0 0 10px;
}

.background-head .bg-head-text .sub-title {
  font-size: 41px;
  font-family: var(--font2);
  font-weight: 600;
}

/* background head end */

/* three box  */
.three-box .three-box-in {
  width: calc(100% / 3);
  float: left;
  background-color: var(--bg2);
  text-align: center;
  height: 180px;
  padding-top: 40px;
  transition: var(--transition);
}

/* .three-box .three-box-in:not(:last-child) {
    border-right: 1px solid var(--black);
} */

.three-box .three-box-in.bg2 {
  background-color: var(--bg3);
}

.three-box .three-box-in.bg3 {
  background-color: var(--theme);
  /* border: none; */
}

/* .three-box .three-box-in:hover {
    background-color: var(--bg2);
}

.three-box .three-box-in.bg2:hover {
    background-color: var(--bg3);

} */

.three-box .three-box-in.bg3:hover {
  background-color: var(--theme);
}

.three-box .three-box-in .three-box-title {
  font-size: 40px;
  color: var(--white);
  font-family: var(--font2);
}

.three-box .three-box-in .three-box-des {
  font-size: 18px;
  color: var(--white);
}

.three-box .three-box-in:hover {
  opacity: 0.9;
}

/* three box end */

/* home news  */
.home-news {
  padding: 60px 0;
  background-color: var(--bg1);
}

.news_slide .owl-dots {
  position: relative;
  bottom: unset;
  left: unset;
  transform: translateX(0);
  padding: 15px 0 10px;
  margin: 0 auto;
  width: fit-content;
}

.news_slide .owl-dots span {
  display: block;
  /* height: unset;
    width: unset; */
  background: transparent;
  margin: 0 4px;
  /* border-radius: unset; */
  opacity: 0.6;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  text-align: center;
  padding: 0px !important;
  transition: var(--transition);
}

.news_slide .owl-dots span:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.news_slide .owl-dots.active span {
  opacity: 1;
}

.news_slide .owl-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 29px;
}

.news_slide .owl-next {
  position: absolute;
  top: 0;
  right: -30px;
  transform: translateY(0);
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  text-align: center;
  padding: 2px !important;
  transition: var(--transition);
}

.news_slide .owl-next.disabled {
  opacity: 0.6;
}

.news_slide .owl-prev {
  position: absolute;
  top: 0;
  left: -30px;
  transform: translateY(0);
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  text-align: center;
  padding: 2px !important;
  transition: var(--transition);
}

.news_slide .owl-prev.disabled {
  opacity: 0.6;
}

.news_slide .owl-next:hover,
.news_slide .owl-prev:hover {
  background: var(--bg2) !important;
}

.news_slide .owl-next svg,
.news_slide .owl-prev svg {
  margin-top: 3px;
}

.news_slide .owl-next:hover svg path,
.news_slide .owl-prev:hover svg path {
  fill: var(--white);
}

.main-title {
  text-align: center;
  font-size: 45px;
  font-family: var(--font2);
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  margin: 0 0 30px;
}

/* news item  */
.news-item {
  border: 1px solid var(--border);
}

.news-item .wrap-img {
  padding-bottom: 56%;
}

.news-item img {
  transition: var(--transition);
}

.news-item:hover img {
  transform: scale(1.1);
}

.news-item .text-box {
  padding: 28px 24px 25px;
}

.news-item .text-box .n-title {
  font-size: 18px;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 50px;
  font-family: var(--font2);
}

.news-item .text-box .n-title:hover {
  color: var(--theme);
}

.news-item .text-box .n-date {
  margin-top: 10px;
}

.news-item .text-box .n-date p {
  font-size: 12px;
}

.news-item .text-box .n-des {
  font-size: 16px;
  margin-top: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 68px;
}

.news-item .n-tool {
  margin-top: 10px;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}

.news-item .n-tool .n-tool-views {
  float: left;
}

.news-item .n-tool .n-tool-views svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.news-item .n-tool .n-tool-views p {
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
  line-height: 12px;
}

.news-item .n-tool .n-tool-cmt {
  float: left;
  margin-right: 15px;
}

.news-item .n-tool .n-tool-cmt svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.news-item .n-tool .n-tool-cmt p {
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
  line-height: 12px;
}

.news-item .n-tool .n-tool-heart {
  float: right;
}

.news-item .n-tool .n-tool-heart p {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 12px;
}

.news-item .n-tool .n-tool-heart svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  stroke: var(--bg4);
  color: var(--white);
  cursor: pointer;
}

.news-item .n-tool .n-tool-heart.active svg {
  color: var(--bg4);
}

/* news item 2 */

.news-item2 {
  border: 1px solid var(--bg2);
}

.news-item2 .wrap-img {
  padding-bottom: 75%;
}

.news-item2 img {
  transition: var(--transition);
}

.news-item2:hover img {
  transform: scale(1.1);
}

.news-item2 .text-box {
  padding: 28px 24px 25px;
  min-height: 235px;
  background: var(--white);
}

.news-item2 .text-box .n-title {
  font-size: 22px;
  font-family: var(--font2);
  margin: 0 0 15px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-item2 .text-box .n-des {
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: var(--transition);
}

.news-item2:hover .text-box .n-title {
  color: var(--theme);
}

.news-item2:hover .text-box .n-des {
  color: var(--theme);
}

/* news-item3  */
.news-item3 {
  border: 1px solid var(--border);
}

.news-item3 .wrap-img {
  padding-bottom: 65%;
}

.news-item3 .text-box {
  padding: 28px 24px 25px;
  min-height: 240px;
}

.news-item3 img {
  transition: var(--transition);
}

.news-item3:hover img {
  transform: scale(1.1);
}

.news-item3 .text-box .n-title {
  font-size: 22px;
  font-family: var(--font2);
  display: block;
  margin: 0 0 10px;
  color: var(--theme);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-item3 .text-box:hover .n-title {
  color: #091f5f;
}

.news-item3 .text-box .n-des {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 16px;
  transition: var(--transition);
  color: var(--theme);
}

.news-item3 .text-box:hover .n-des {
  color: #091f5f;
}

.skien-custom .news-item3 .text-box {
  min-height: 160px;
}

.nbg1 .text-box {
  background-color: var(--bg1);
}

.skien-custom .news-item3 .text-box .n-des {
  display: none;
}

.h-news-paginate {
  text-align: center;
  padding-top: 20px;
}

.h-news-paginate li {
  display: inline-block;
}

.h-news-paginate li {
  font-size: 14px;
}

.h-news-paginate li a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: block;
}

.h-news-paginate li a:hover {
  color: var(--theme);
}

.h-news-link {
  padding-top: 30px;
}

.btn-main {
  text-align: center;
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--bg2);
  color: var(--white);
  padding: 10px 40px;
  font-size: 17px;
  transition: var(--transition);
  border: none;
  border: 1px solid var(--bg2);
}

.btn-main:hover {
  border: 1px solid var(--bg3);
  background: var(--bg3);
  color: var(--white);
}

.btn-main.hover-white:hover {
  background-color: var(--white);
  color: var(--theme);
  border: 1px solid var(--bg2);
}

/* home news end */

/* ads slide  */
.ads-slide {
  position: relative;
}

.ads-slide img {
  width: 100%;
  height: auto;
}

.owl-prev {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--white) !important;
}

.owl-next {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--white) !important;
}

.owl-prev:hover,
.owl-next:hover {
  color: var(--theme) !important;
}

.owl-nav svg {
  transition: var(--transition);
}

.owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dots button {
  display: inline-block;
  vertical-align: middle;
}

.owl-dots span {
  display: block;
  height: 8px;
  width: 8px;
  background: var(--white);
  margin: 0 8px;
  border-radius: 50%;
  opacity: 0.6;
}

.owl-dots .active span {
  opacity: 1;
}

.ads-slide .item {
  /* height: 400px; */
  position: relative;
}

.ads-slide .item .adm-glyphicon {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.quotes .owl-dots span {
  background-color: var(--theme);
}

.quotes .owl-dots .active span {
  opacity: 1;
  background-color: var(--text3);
}

/* ads slide end */

/* giai phap  */
.gphap-sp {
  padding: 60px 0;
  background-color: var(--bg1);
}

.gphap-item {
  height: 320px;
  border: 1px solid var(--border);
  margin: 0 0 30px;
}

.gphap-item .gp-left {
  float: left;
  width: 45%;
  min-height: 320px;
  height: 100%;
  display: block;
  overflow: hidden;
}

.gphap-item .gp-left img {
  height: 100%;
  width: 100%;
  transition: var(--transition);
}

.gphap-item:hover img {
  transform: scale(1.1);
}

.gphap-item .gp-right {
  float: left;
  width: 55%;
  padding: 24px 36px 15px;
}

.gphap-item .gp-right .gp-date {
  font-size: 12px;
  margin: 0 0 15px;
  transition: var(--transition);
}

.gphap-item .gp-right .gp-title {
  font-size: 28px;
  font-family: var(--font2);
  font-weight: 500;
  margin: 0 0 15px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.gphap-item .gp-right .gp-des {
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: var(--transition);
}

.ntext-custom .gphap-item .gp-right .gp-date {
  color: var(--theme);
}

.ntext-custom .gphap-item .gp-right .gp-title {
  color: var(--theme);
}

.ntext-custom .gphap-item .gp-right .gp-title:hover {
  color: #091f5f;
}

.ntext-custom .gphap-item .gp-right .gp-des {
  color: var(--theme);
}

.gphap-item:hover .gp-right .gp-date,
.gphap-item:hover .gp-right .gp-des,
.gphap-item:hover .gp-right .gp-title {
  color: var(--theme);
}

/* giai phap end */

/* quotes  */

.quotes .item {
  height: 300px;
  position: relative;
  background-color: var(--bg2);
}

.quotes .item img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.quotes .item .quotes-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 1000px;
  max-width: 90%;
}

.quotes .item .quotes-text p {
  font-size: 28px;
  font-family: var(--font2);
  color: var(--white);
}

.quotes .item .quotes-text .quotes-author {
  color: var(--white);
  font-size: 18px;
  font-family: var(--font2);
  margin-top: 20px;
  display: block;
}

/* 
.quotes .item .quotes-text h3 {
  font-size: 45px;
  font-family: var(--font2);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
} */

.quotes .item .quotes-text .type31 {
  font-size: 45px;
  font-family: var(--font2);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}

.quotes .item .quotes-text .type11 {
  text-align: left;
  font-size: 45px;
  font-family: var(--font2);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}

.quotes .item .quotes-text .type12 {
  margin: 30px 0;
  font-size: 45px;
  font-family: var(--font2);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}

.quotes .item .quotes-text .type13 {
  text-align: right;
  font-size: 45px;
  font-family: var(--font2);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}

/* quotes end */

/* upcoming-event  */
.upcoming-event {
  background-color: var(--bg1);
  padding: 60px 0;
}

.upcoming-event .uevent-link {
  margin-top: 50px;
}

/* upcoming-event end */

/* doi tac  */
.doitac {
  padding: 60px 0;
}

.doitac .item {
  height: 160px;
  position: relative;
  cursor: pointer;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
}

.doitac .item .doitac-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* -------- */
.doitac .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-top: 2px solid transparent;
  height: 100%;
}

.doitac .item:hover::after {
  border-color: var(--theme);
  width: 100%;
}

/* -------- */
.doitac .item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  height: 100%;
}

.doitac .item:hover::before {
  border-color: var(--theme);
  width: 100%;
}

/* -------- */
.doitac .doitac-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.doitac .item:hover .doitac-overlay::after {
  border-color: var(--theme);
  height: 100%;
}

/* -------- */
.doitac .doitac-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-right: 2px solid transparent;
}

.doitac .item:hover .doitac-overlay::before {
  border-color: var(--theme);
  height: 100%;
}

.doitac .item img {
  width: auto !important;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100% - 40px);
}

/* .doitac .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
    visibility: hidden;
} */

/* .doitac .item:hover::after {
    visibility: visible;
    opacity: 0.5;
} */

.doitac .item {}

/* doi tac end */

/* footer  */
.footer {
  background-color: var(--bg5);
  padding: 60px 0;
}

.footer-wrap {
  max-width: 1725px;
  margin: 0 auto;
}

.footer .f-title {
  font-size: 28px;
  font-family: var(--font2);
  color: var(--theme);
  font-weight: 600;
  margin: 0 0 30px;
}

.footer .f-info-item {
  margin: 0 0 15px;
}

.footer .f-info-item h3 {
  font-size: 15px;
  color: var(--theme);
  margin-bottom: 10px;
}

.footer .f-info-item .link {
  font-size: 15px;
  color: var(--theme);
  display: block;
  margin-bottom: 5px;
}

.footer .f-info-item .link:hover {
  opacity: 0.6;
}

.footer .f-form {
  max-width: 465px;
  margin: 0 auto;
}

.footer .f-form h3 {
  font-size: 18px;
  /* font-family: var(--font2); */
  /* font-weight: 600; */
  /* text-transform: uppercase; */
  margin: 0 0 20px;
  color: var(--theme);
}

.footer .f-form h3:hover {
  color: var(--bg2);
}

.footer .f-form label {
  font-weight: 400;
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
  /* font-family: var(--font2); */
  /* font-weight: 600; */
  /* text-transform: uppercase; */
  color: var(--theme);
}

.footer .f-form label:hover {
  color: var(--bg2);
}

.footer .f-form input[type="text"] {
  height: 40px;
  border: none;
  background-color: transparent;
  color: var(--theme);
  border-bottom: 1px solid var(--theme);
  width: 100%;
}

.footer .f-form .form-box {
  margin-bottom: 30px;
}

.footer .f-form button {
  width: 100%;
  margin: 0;
}

.footer .f-menu {
  max-width: 200px;
  margin: 0 auto;
}

.footer .f-menu .f-menu-title {
  font-size: 20px;
  font-family: var(--font2);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--theme);
}

.footer .f-menu .link {
  font-size: 16px;
  color: var(--theme);
  display: block;
  margin: 0 0 5px;
  font-weight: 600;
  padding: 4px 2px;
  opacity: 0.8;
}

.footer .f-menu .link:hover {
  color: var(--bg2);
  opacity: 1;
}

/* -------------------------------------- */
.checkbox-wrapper-4 * {
  box-sizing: border-box;
}

.checkbox-wrapper-4 .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
  margin: 0 !important;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 6px;
}

.checkbox-wrapper-4 .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
  font-size: 16px;
  font-weight: 600;
  padding-top: 0px;
}

.checkbox-wrapper-4 .cbx span:first-child {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 1px;
  transform: scale(1);
  border: 2px solid var(--border);
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
  position: absolute;
  top: 0px;
  left: 1px;
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12px;
  stroke-dashoffset: 10px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
  padding-left: 6px;
  line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
  border-color: var(--theme);
}

.checkbox-wrapper-4 .inp-cbx {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked+.cbx span:first-child {
  background: var(--theme);
  border-color: var(--theme);
  animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 640px) {
  .checkbox-wrapper-4 .cbx {
    width: 100%;
    display: inline-block;
  }
}

@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

/* footer end */

/* copyright  */
.copyright-box {
  padding: 40px 0;
  background-color: var(--theme);
}

.copyright-box .copyright {
  color: var(--white);
  font-size: 13px;
}

.copyright-box .dkdv {
  text-align: right;
}

.copyright-box .dkdv .link {
  color: var(--white);
  font-size: 13px;
  display: inline-block;
  position: relative;
}

.copyright-box .dkdv .link:hover {
  color: var(--bg3);
}

.copyright-box .dkdv .link:not(:last-child) {
  margin-right: 15px;
}

.copyright-box .dkdv .link:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -11px;
  top: 0;
  color: var(--white);
  font-weight: 500;
}

/* copyright end */

/* gioi thieu  */
.page-content {
  /* margin-top: 110px; */
  padding: 60px 0;
}

.page-content .p-content {
  font-size: 18px;
  text-align: justify;
}

.page-content .p-content p {
  margin-bottom: 10px;
}

.ls-ptrien {
  padding: 60px 0 0;
  background-color: var(--bg1);
}

.ls-ptrien img {
  width: 100%;
}

.ls-ptrien .ls-item {
  float: left;
  width: calc((100% - 60px) / 5);
  border: 1px solid var(--theme);
  border-radius: 100px;
  padding: 50px 15px 120px;
  position: relative;
  text-align: center;
  font-size: 15px;
  margin-right: 15px;
}

.ls-ptrien .ls-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme);
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.ls-ptrien .ls-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ls-ptrien .ls-icon image {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ls-ptrien .ls-item.margin-0 {
  margin-right: 0px;
}

.ls-ptrien .ls-item::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
  height: 10px;
  width: 10px;
  border: 2px solid var(--black);
  z-index: 2;
  border-radius: 50%;
  background-color: var(--white);
}

.ls-ptrien .ls-item::after {
  content: "";
  position: absolute;
  /* bottom: -10px; */
  top: calc(100% + 4px);
  left: 50%;
  transform: translate(-50%);
  height: 57px;
  width: 2px;
  z-index: 2;
  background: var(--black);
}

.sodo-tochuc {
  padding: 60px 0;
}

.sodo-tochuc img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

.banld {
  background-color: var(--bg1);
  padding: 60px 0;
}

.chutich {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.nhansu-item {
  width: calc((100% - 90px) / 4);
}

.nhansu-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.nhansu-info {
  background: var(--bg1);
  padding: 20px 10px;
  width: 85%;
  margin-left: auto;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.nhansu-info .ns-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
}

.nhansu-info .ns-des {
  font-size: 16px;
  color: var(--theme);
}

.banld .wrap {
  max-width: 1290px;
}

.vphoi {
  padding: 60px 0;
  background-color: var(--bg1);
}

.vphoi .wrap {
  max-width: 1290px;
}

.vp-item {
  margin-bottom: 30px;
  background-color: var(--bg6);
}

.vp-item .vp-img {
  width: 50%;
  float: left;
  height: 300px;
}

.vp-item .vp-img img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.vp-item .vp-text {
  width: 50%;
  float: left;
  height: 300px;
  color: var(--white);
  padding: 30px 15px 20px;
}

.vp-item .vp-text .vp-subname {
  font-size: 16px;
}

.vp-item .vp-text .vp-name {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font2);
}

.smenh-tnhin {
  padding: 60px 0;
  background-color: var(--bg1);
}

.smenh-tnhin .sm-tn-text {
  width: 50%;
  float: left;
  position: relative;
  text-align: center;
}

.smenh-tnhin .sm-tn-text .sm-tn-text-pos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 418px;
}

.smenh-tnhin .sm-tn-text .sm-tn-text-pos h2 {
  font-size: 60px;
  font-family: var(--font2);
  margin: 0 0 20px;
  color: #324158;
}

.smenh-tnhin .sm-tn-text .sm-tn-text-pos p {
  font-size: 25px;
  color: #324158;
  text-align: justify;
}

.smenh-tnhin .sm-tn-text2 .sm-tn-text2-pos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 418px;
}

.smenh-tnhin .sm-tn-text2 .sm-tn-text2-pos h2 {
  font-size: 60px;
  font-family: var(--font2);
  margin: 0 0 20px;
  color: #324158;
}

.smenh-tnhin .sm-tn-text2 .sm-tn-text2-pos p {
  font-size: 25px;
  color: #324158;
  text-align: justify;
}

.smenh-tnhin .sm-tn-img {
  width: 50%;
  float: left;
}

.smenh-tnhin .sm-tn-img img {
  height: 100%;
  width: 100%;
}

.smenh-tnhin .sm-tn-text2 {
  width: 50%;
  float: left;
  position: relative;
  text-align: center;
}

.smenh-tnhin .sm-tn-img2 {
  width: 50%;
  float: left;
}

.smenh-tnhin .sm-tn-img2 img {
  width: 100%;
  height: 100%;
}

.tapchi {
  padding: 60px 0;
  background-color: var(--bg1);
}

.tapchi .tapchi-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tapchi-item {
  width: 300px;
}

.tapchi-item img {
  width: 95%;
}

.tapchi-item .tapchi-text {
  background: #a5c8d4;
  width: 95%;
  margin-left: auto;
  position: relative;
  z-index: 2;
  top: -30px;
  padding: 20px 15px;
  font-size: 17px;
}

.hoitdh {
  padding: 60px 0;
}

.hoitdh .wrap {
  max-width: 1290px;
}

.hoitdh-item {
  margin-bottom: 15px;
}

.hoitdh-item .hoitdh-img {
  height: 282px;
  width: 50%;
  position: relative;
  float: left;
}

.hoitdh-item .hoitdh-img img {
  width: 100%;
  height: 100%;
}

.hoitdh-item .hoitdh-text {
  width: 50%;
  height: 282px;
  position: relative;
  float: left;
  padding: 25px 15px;
}

.hoitdh-item {
  background-color: var(--bg6);
}

.hoitdh-item .hoitdh-text .hoitdh1-subtitle {
  font-size: 16px;
  color: var(--white);
}

.hoitdh-item .hoitdh-text .hoitdh1-title {
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font2);
}

.hoitdh-item .hoitdh-text .link {
  position: absolute;
  bottom: 25px;
  left: 15px;
}

.hoitdh .row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.hoitdh .col-sm-6 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.hoitdh .hoitdh-linkk {
  margin-top: 15px;
}

.page-video {
  background-color: var(--bg1);
}

.page-video .pvideo-left {
  width: 50%;
  position: relative;
  float: left;
  padding: 60px 0 30px;
}

.page-video .pvideo-left .btn-main {
  margin-bottom: 30px;
}

.page-video .pvideo-right {
  width: 50%;
  float: left;
  position: relative;
}

.page-video .pvideo-right .wrap-img {
  padding-bottom: 65%;
}

/* gioi thieu end */

/* su kien  */
.banner-side {
  background: var(--theme);
  margin-top: 110px;
  padding: 27px 0 28px;
  text-align: center;
}

.banner-side .bside-title {
  font-size: 50px;
  color: var(--white);
  font-family: var(--font2);
  font-weight: 600;
  text-transform: uppercase;
}

.banner-side-news .banner-side {
  background-color: var(--white);
}

.banner-side-news .banner-side .bside-title {
  color: var(--theme);
}

.banner-side-news .breadcrumb-box a {
  color: var(--theme);
}

.banner-side .banner-side-box h1 {
  font-size: 50px;
  color: var(--white);
  font-family: var(--font2);
  font-weight: 600;
  text-transform: uppercase;
}

.banner-side .banner-side-box p {
  font-size: 18px;
  text-align: left;
  color: var(--white);
  font-family: var(--font2);
  margin-bottom: 5px;
}

.lich {
  padding: 60px 0;
}

.lich table {
  width: 100%;
}

.lich .lich-title {
  text-align: center;
  padding: 0 0 30px;
  position: relative;
}

.lich .lich-title .nav-lich {
  display: inline-block;
  vertical-align: middle;
  color: var(--theme);
}

.lich .lich-title .link {
  position: absolute;
  right: 0;
  top: 0;
}

.lich .lich-title span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  color: var(--theme);
}

.new-lich-title {
  display: block;
  font-size: 14px;
}



.lich .table-head th {
  font-size: 22px;
  font-weight: 400;
  color: var(--theme);
  padding: 10px;
}

.lich .table-body td {
  border: 1px solid var(--black);
}

.lich .table-body .lich-box {
  /* background-color: #8ae766cc; */
  color: var(--theme);
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.lich .table-body .disable {
  background-color: #8ae766cc;
}

.main-custom {
  background-color: var(--bg1);
  margin-bottom: 0;
  padding-bottom: 30px;
}

.at-expo {
  padding: 60px 0;
  background-color: var(--bg1);
}

.at-expo .left {
  width: 50%;
  float: left;
}

.at-expo .left-pos {
  max-width: 480px;
  margin: 0 auto;
  padding-top: 50px;
}

.at-expo .left p {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font2);
  margin-bottom: 20px;
}

.at-expo .right {
  width: 50%;
  float: left;
  padding: 50px 80px;
  background: var(--theme);
}

.at-expo .owl-prev.disabled,
.at-expo .owl-next.disabled {
  display: none;
}

.at-item {
  background-color: var(--white);
}

.at-item .wrap-img {
  padding-bottom: 56%;
}

.at-item .at-text {
  padding: 15px 20px 20px;
}

.at-item .at-text .at-title {
  font-size: 22px;
  font-family: var(--font2);
  color: var(--theme);
}

.at-item .at-text .at-title:hover {
  color: var(--bg3);
}

.dk-skien {
  background: var(--bg6);
  padding: 60px 0;
  text-align: center;
}

.dk-skien .main-title {
  color: var(--white);
}

.dk-skien p {
  font-size: 20px;
  color: var(--white);
  margin: 0 0 20px;
}

.dk-skien .link {
  background: var(--white);
  color: var(--theme);
  border: 1px solid var(--white);
}

.dk-skien .link:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  color: var(--white);
}

/* su kien end */

/* news detail  */
.ndetail-head {
  margin-top: 110px;
  padding: 60px 0;
  background-color: var(--bg1);
}

.ndetail-head .link {
  float: left;
  font-size: 18px;
  color: var(--theme);
}

.ndetail-head form {
  float: right;
  position: relative;
}

.ndetail-head form input {
  width: 200px;
  color: var(--theme);
  padding: 5px 15px 5px 30px;
  border: none;
  font-size: 16px;
  background-color: transparent;
  transition: var(--transition);
}

.ndetail-head form input::placeholder {
  color: var(--theme);
}

.ndetail-head form button {
  position: absolute;
  top: 6px;
  left: 5px;
  border: none;
  background: transparent;
  padding: 0;
  color: var(--theme);
  transition: var(--transition);
}

.ndetail-head form button svg path {
  fill: var(--theme);
}

.ndetail-head form a svg path {
  fill: var(--theme);
}

.news-detail {
  background-color: var(--bg1);
}

.news-detail .news-detail-box {
  border: 1px solid var(--border);
  padding: 60px 80px;
}

.news-detail .ndetail-extra {
  margin-bottom: 20px;
}

.news-detail .ndetail-extra ul {
  float: left;
}

.news-detail .ndetail-extra ul li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.news-detail .ndetail-extra ul li:not(:last-child)::after {
  content: ".";
  position: absolute;
  right: 0;
  top: -4px;
  font-size: 22px;
}

.news-detail .ndetail-extra ul li img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.news-detail .ndetail-extra ul li p {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.news-detail .ndetail-extra .share-btn {
  float: right;
  padding-top: 5px;
  position: relative;
}

.news-detail .ndetail-extra .share-btn svg {
  cursor: pointer;
}

.news-detail .ndetail-extra .share-btn .share-open {
  position: absolute;
  top: 100%;
  right: 25px;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  width: 200px;
  background: var(--bg1);
  padding: 15px 15px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.news-detail .ndetail-extra .share-btn .share-open.active {
  opacity: 1;
  visibility: visible;
}

.share-open svg {
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition);
}

.share-open p {
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition);
}

.share-open:hover svg,
.share-open:hover p {
  color: var(--theme);
}

.news-detail .nd-title {
  font-size: 40px;
  margin: 0 0 30px;
  font-family: var(--font2);
  color: var(--theme);
}

.news-detail .nd-content {
  font-size: 18px;
  margin-bottom: 30px;
}

.news-detail .nd-content img {
  max-width: 100%;
  margin: 10px 0;
}

.news-detail .nd-tag {
  margin: 0 0 20px;
}

.news-detail .nd-tag .tag-link {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 15px;
  color: var(--theme);
  margin-right: 10px;
  margin-bottom: 10px;
}

.news-detail .nd-share {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.news-detail .nd-share li {
  display: inline-block;
  vertical-align: middle;
}

.news-detail .nd-share li a {
  display: block;
  margin-right: 20px;
}

.news-detail .nd-share li a:hover {
  color: var(--bg3);
}

.news-detail .nd-count {
  padding: 20px 0 0;
}

.news-detail .nd-count ul {
  float: left;
}

.news-detail .nd-count ul li {
  display: inline-block;
  vertical-align: middle;
}

.news-detail .nd-count ul li p {
  margin-right: 15px;
}

.news-detail .nd-count .click-heart {
  float: right;
  color: var(--white);
}

.nd-sub-box {
  margin: 0 0 20px;
}

.nd-sub-box .nd-sub-title {
  font-size: 18px;
  float: left;
}

.nd-sub-box .nd-sub-link {
  font-size: 16px;
  float: right;
}

.nd-comment {
  background-color: var(--bg1);
}

.nd-comment .nd-comment-box {
  border: 1px solid var(--border);
  padding: 60px 80px;
}

.nd-comment .nd-comment-title {
  font-size: 16px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.nd-comment textarea {
  width: 100%;
  padding: 20px 15px;
  background: transparent;
  resize: vertical;
  margin: 0 0 20px;
  border: 1px solid var(--border);
  font-size: 16px;
  height: 80px;
  transition: var(--transition);
}

.nd-comment .btn-box {
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nd-comment .btn-box .close_cmt {
  font-size: 16px;
  margin-right: 10px;
  display: inline-block;
  color: var(--theme);
}

.nd-comment .btn-box .close_cmt:hover {
  text-decoration: underline;
}

.nd-comment .btn-box .btn-main {
  display: inline-block;
  margin: 0;
  padding: 5px 15px;
}

.nd-comment textarea.open {
  height: 120px;
}

.nd-comment .btn-box.open {
  opacity: 1;
  visibility: visible;
}

.cmt-item {
  position: relative;
  margin: 0 0 30px;
}

.cmt-item .cmt-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d8d8d8;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.cmt-item .cmt-img img {
  height: 100%;
  width: 100%;
}

.cmt-item .cmt-text {
  padding-left: 50px;
}

.cmt-item .cmt-text .cmt-content {
  margin-top: 15px;
  font-size: 16px;
}

.ndetail-head form.unactive input,
.ndetail-head form.unactive button {
  opacity: 0;
  visibility: hidden;
}

.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.share-modal.active {
  opacity: 1;
  visibility: visible;
}

.share-modal .bg_modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.5;
  cursor: pointer;
}

.share-modal .share-modal-box {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  background: var(--bg1);
  padding: 60px 20px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.share-modal .share-modal-box h2 {
  font-size: 16px;
  margin: 0 0 30px;
  font-weight: 600;
  font-family: var(--font2);
}

.share-modal .share-modal-box li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}

.share-modal .share-modal-box li a {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--theme);
  position: relative;
}

.share-modal .share-modal-box li a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
}

.share-modal .share-modal-box li a.share_fb {
  background: #4464a3;
}

.share-modal .share-modal-box li a.share_tw {
  background: #55acee;
}

.share-modal .share-modal-box li a.share_ln {
  background: #0077b5;
}

.share-modal .share-modal-box li a.copy_link {
  background: #333333;
}

.share-modal .share-modal-box li a:hover {
  opacity: 0.8;
}

.share-modal .x_close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
}

/* news detail end */

/* giai phap  */
.home-news.bg0 {
  background-color: var(--white);
}

/* giai phap end */

/* hoi vien  */
.hoitdh.bg1 {
  background-color: var(--bg1);
}

.quyche-hv {
  padding: 60px 0;
}

.dk-hv {
  padding: 60px 0;
  background-color: var(--bg1);
}

.dk-hv p {
  font-size: 24px;
  margin-bottom: 15px;
}

.dk-hv .form-box {
  margin-bottom: 15px;
}

.dk-hv .form-box label {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}

.dk-hv .form-box input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 2px solid var(--black);
  padding: 0 15px;
}

.dk-hv .form-box textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid var(--black);
  padding: 15px 15px;
}

.iti--allow-dropdown {
  width: 100%;
}

.iti__selected-dial-code {
  display: none;
}

.iti__tel-input {
  padding-left: 50px !important;
}

.dk-hv .form-submit .btn-main {
  width: 100%;
}

.dk-hv .form-submit .btn-main:hover {
  background-color: #454545;
  border: 1px solid #454545;
}

/* hoi vien end */

/* line he  */
.lien-he-head {
  padding: 60px 0;
  background-color: var(--bg1);
}

.lien-he-head .line-he-list h3 {
  font-size: 28px;
  font-family: var(--font2);
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--theme);
}

.lien-he-head .line-he-list a {
  font-size: 18px;
}

.lien-he-head .line-he-list {
  margin-bottom: 30px;
}

.lien-he-head .form-box {
  margin-bottom: 15px;
}

.lien-he-head .form-box label {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}

.lien-he-head .form-box input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid var(--black);
  padding: 0 15px;
  background-color: transparent;
}

.lien-he-head .form-box textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 1px solid var(--black);
  background-color: transparent;
  padding: 15px 15px;
}

.lien-he-map {
  height: 450px;
}

.lien-he-map iframe {
  width: 100%;
  height: 100%;
}

/* line he end */
.search-list .news-item {
  margin-bottom: 30px;
}

/* login  */

.login-header {
  background-color: var(--bg1);
  padding: 20px 0px;
  text-align: center;
  margin: 0 0 40px;
}

.login-header h2 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.login-box {
  padding: 40px 30px;
  border: 1px solid var(--border);
}

.login-box .login-title {
  margin-bottom: 30px;
}

.login-title h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 24px;
}

.account-input span {
  display: block;
  color: var(--text3);
  margin: 0 0 15px;
}

.account-input input {
  width: 100%;
  padding: 6px 15px;
  border: 1px solid var(--border);
  border-radius: 5px;
  margin: 0 0 15px;
}

.account-input input:focus {
  border: 1px solid var(--text);
  outline: none;
  box-shadow: none;
}

.forgor {
  text-align: right;
}

.forgor a {
  display: block;
  text-decoration: underline;
  margin: 0 0 15px;
}

.login-button input,
.login-button button {
  width: 100%;
  padding: 11px 15px;
  background-color: var(--text);
  color: var(--white);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
}

.login-button input:focus,
.login-button button:focus {
  outline: none;
}

.modal-forgotPass .modal-dialog {
  width: 60%;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%) !important;
}

.cls-btn-login {
  position: absolute;
  right: 0px;
  top: -50px;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: none;
}

.account-div {
  padding: 80px 0;
}

.account-input {
  position: relative;
}

.account-input img {
  position: absolute;
  z-index: 1;
  right: 5px;
  bottom: 16px;
  padding: 12px;
}

.page-recover .account-input img {
  bottom: 0;
}

.page-text {
  padding: 80px 0;
  background-color: var(--bg1);
}

.page-text-content h2 {
  font-size: 50px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--font2);
  color: var(--theme);
}

.page-text-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--font2);
  color: var(--theme);
}

.page-text-content p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* account  */

.header-dashboard {
  background: var(--bg6);
  height: auto;
}

.logo-dashboard {
  margin-left: 20px;
}

.btn-dung-thu {
  background-color: var(--bg7);
  color: var(--white);
}

.btn-register {
  position: relative;
}

.header-ring {
  position: absolute;
  top: -13px;
  left: -40px;
}

.logos-login {
  text-align: center;
}

/* account end */

/* login end */

/* user  */
.banner-user {
  margin-top: 110px;
  background-color: var(--bg1);
}

.banner-user .buser-box {
  background-color: var(--theme);
  color: var(--white);
  padding: 50px 40px 30px;
  position: relative;
}

.banner-user .buser-box .buser-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-right: 30px;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
}

.banner-user .buser-box .buser-img img {
  width: 100%;
  height: 100%;
}

.banner-user .buser-box .buser-text {
  display: inline-block;
  vertical-align: bottom;
}

.banner-user .buser-box .u-name {
  font-size: 28px;
  margin: 0px 0 10px;
}

.banner-user .buser-box ul li {
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
  position: relative;
  margin-right: 30px;
}

.banner-user .buser-box ul li:not(:last-child)::after {
  content: ".";
  position: absolute;
  right: -20px;
  font-size: 30px;
  font-weight: 600;
  top: -11px;
  line-height: 30px;
}

.banner-user .buser-box .u-share {
  position: absolute;
  right: 40px;
  bottom: 30px;
}

.banner-user .buser-box .u-share button {
  background: transparent;
  border: none;
}

.banner-user .user-menu .user-menu-pc li {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  padding: 0 10px;
  position: relative;
}

.banner-user .user-menu .user-menu-pc li::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--bg2);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.banner-user .user-menu .user-menu-pc li.active::after,
.banner-user .user-menu .user-menu-pc li:hover::after {
  opacity: 1;
  visibility: visible;
}

.banner-user .user-menu .user-menu-pc li .link {
  color: var(--bg2);
  padding: 10px 0;
  display: block;
}

.user-content {
  padding: 80px 0;
  background-color: var(--bg1);
}

.user-content .u-profile-left {
  float: left;
}

.user-content .u-profile-left h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--theme);
  font-family: var(--font2);
  margin-bottom: 10px;
}

.user-content .u-profile-left p {
  font-size: 15px;
  color: var(--theme);
}

.user-content .u-profile-right {
  float: right;
}

.user-content .u-profile-right .link {
  font-size: 14px;
  color: var(--theme);
}

.user-content .u-profile-right .link svg {
  transform: translateY(6px);
}

.user-content .u-profile-right .link:hover {
  text-decoration: underline;
}

.user-content .u-profile-head {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.user-content .u-profile-body p {
  font-size: 26px;
  font-weight: 600;
  color: var(--theme);
  font-family: var(--font2);
  margin-bottom: 10px;
}

.user-content .u-profile-body textarea {
  width: 100%;
  height: 120px;
  border: 1px solid var(--border);
  padding: 15px 20px;
  font-size: 16px;
  margin-bottom: 15px;
}

.user-content .u-profile-body .btn-boxx {
  float: right;
}

.user-content .u-profile-body .btn-boxx button {
  float: left;
  margin: 0;
  border: 1px solid var(--bg2);
}

.user-content .u-profile-body .btn-boxx .btn-sub-main {
  text-align: center;
  display: block;
  width: fit-content;
  background: var(--white);
  color: var(--bg2);
  padding: 10px 40px;
  font-size: 17px;
  transition: var(--transition);
}

.user-content .u-profile-body .btn-boxx .btn-sub-main:hover {
  text-decoration: underline;
}

.user-content .u-profile-body .btn-boxx .btn-main:hover {
  border-color: var(--bg3);
}

.form-change-pass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  color: var(--black);
  text-align: left;
}

.form-change-pass.open {
  opacity: 1;
  visibility: visible;
}

.form-change-pass .overly {
  background: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  cursor: pointer;
}

.form-change-pass .closefrm {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  cursor: pointer;
}

.form-change-pass .form-changepass-in {
  width: 520px;
  max-width: 100%;
  position: absolute;
  z-index: 10;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
}

.form-change-pass .form-changepass-in .title {
  font-size: 20px;
  margin: 0 0 10px;
  font-family: var(--font2);
}

.form-change-pass .form-changepass-in .des {
  font-size: 16px;
  margin: 0 0 20px;
}

.form-change-pass .form-changepass-in p {
  padding: 10px 10px 10px 35px;
  background: var(--bg1);
  font-size: 14px;
  margin: 0 0 20px;
  position: relative;
}

.form-change-pass .form-changepass-in p svg {
  position: absolute;
  left: 10px;
  top: 20px;
}

.form-change-pass .form-group {
  position: relative;
}

.form-change-pass .form-group label {
  font-weight: 400;
  display: block;
  margin: 0 0 10px;
}

.form-change-pass .form-group input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 15px;
  border: 1px solid var(--black);
}

.form-change-pass .lay-mk {
  font-size: 16px;
  display: block;
  text-decoration: underline;
  margin-bottom: 10px;
}

.form-change-pass .form-button {
  text-align: right;
}

.form-change-pass .form-button button {
  display: inline-block;
  border: 1px solid var(--black);
  padding: 8px 20px;
  background: var(--white);
  font-size: 16px;
}

.form-change-pass .form-button button.frm-sumt {
  background-color: var(--black);
  color: var(--white);
  margin-left: 10px;
}

.form-change-pass .form-group svg {
  position: absolute;
  right: 15px;
  bottom: 13px;
}

.news-cats-menubox {
  display: none;
}

.avt-logged {
  width: 30px;
  height: 30px;
  position: relative;
  background: var(--white);
  color: var(--theme);
  text-transform: uppercase;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.header .h-login .link.logged {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logged-menu {
  position: absolute;
  top: 70%;
  right: 50%;
  background-color: var(--bg1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 200px;
  border-radius: 5px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.logged-menu.active {
  opacity: 1;
  visibility: visible;
}

.logged-menu ul {
  line-height: 30px;
  padding: 10px 0;
}

.logged-menu ul li a {
  color: var(--theme) !important;
  font-size: 16px;
  text-align: left;
  padding: 5px 15px;
  display: block;
}

.box-set-box .box-set {
  padding: 15px 15px 15px 40px;
  border: 1px solid var(--black);
  position: relative;
  margin-bottom: 10px;
}

.box-set-box .box-set::after {
  content: "";
  top: 15px;
  left: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background-color: transparent;
  position: absolute;
}

.box-set-box .box-set::before {
  content: "";
  top: 19px;
  left: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: transparent;
  position: absolute;
}

.box-set-box .box-set.active::before {
  content: "";
  top: 19px;
  left: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background-color: var(--black);
  position: absolute;
}

.box-set-box .box-set.active {
  background-color: #0000001a;
}

.box-set-box.form-change-pass .form-changepass-in .title {
  margin-bottom: 30px;
}

.box-set-box .box-set .bset-title {
  font-size: 16px;
  margin: 0 0 5px;
}

.box-set-box .box-set .bset-des {
  font-size: 14px;
}

.box-set-box .box-set .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* user ennd */
.skiptranslate {
  display: none !important;
}

.home-news-custom .news-item2 .text-box {
  min-height: 120px;
  background: var(--bg1);
}

.home-news-custom .news-item2 .text-box .n-des {
  display: none;
}

/* hoat dong  */
.hd-hinhanh {
  background-color: var(--bg1);
}

.hd-hinhanh .hd-hinhleft {
  float: left;
  width: 50%;
  position: relative;
}

.hd-hinhanh .hd-hinhleft .hd-hinhleft-pos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hd-hinhanh .hd-hinhleft p {
  font-size: 45px;
  font-family: var(--font2);
  color: var(--theme);
  margin: 0 0 20px;
}

.hd-hinhanh .hd-hinhright {
  float: left;
  width: 50%;
  position: relative;
}

.hd-hinhanh .hd-hinhright img {
  width: 100%;
  height: 100%;
}

/* hoat dong end */
.ntextblack .news-item3 .text-box .n-title {
  color: var(--text);
}

.ntextblack .news-item3 .text-box .n-des {
  color: var(--text);
}

.ntextblack .news-item3 .text-box:hover .n-title {
  color: var(--bg2);
}

.ntextblack .news-item3 .text-box:hover .n-des {
  color: var(--bg2);
}

.news-list-link .link {
  margin-top: 30px;
}

.pb-0 {
  padding-bottom: 0px;
}

.chat-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.chat-box button {
  background-color: var(--bg2);
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
  /* border: 1px solid rgb(193, 218, 184); */
  border: none;
  box-shadow: 0 0 3px 0 hsla(0, 1.4%, 71%, 0.5);
}

.chat-box button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
}

.chat-box button:hover {
  opacity: 0.8;
}

.chat-box.scroll {
  opacity: 1;
  visibility: visible;
}

.social-fixbox {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.social-fixbox li a {
  width: 42px;
  height: 42px;
  display: block;
  background: var(--theme);
  position: relative;
}

.social-fixbox li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
}

.social-fixbox li a:hover {
  background: var(--bg2);
}

.news-lista {
  padding: 80px 0;
}

.news-lista .news-item {
  margin-bottom: 30px;
}

/* Pagination */
.pagination-box {
  text-align: center;
  margin-top: 20px;
}

.pagination-box div {
  display: inline-block;
}

.pagination-box div:not(:last-child) {
  margin-right: 5px;
}

.pagination-box div a {
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  color: var(--text);
  transition: 0.3s ease;
}

.pagination-box div.current a,
.pagination-box div a:hover {
  background: var(--theme) !important;
  color: var(--white) !important;
}

.pagination-box div.last a,
.pagination-box div.first a {
  width: auto;
  font-size: 14px;
  padding: 0 19px;
  border-radius: 4px;
  color: var(--text);
}

/* Pagination end */

/* breadcrumb  */
.breadcrumb-box {
  margin-top: 20px;
}

.breadcrumb-box li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.breadcrumb-box li:not(:last-child) {
  margin-right: 17px;
}

.breadcrumb-box li:not(:last-child)::after {
  content: "";
  /* content: "."; */
  position: absolute;
  right: -16px;
  top: 4px;
  color: var(--white);
  /* font-size: 30px; */
  /* line-height: 0; */
  background-image: url(./img/Frame.svg);
  height: 14px;
  width: 14px;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(0.8);
}

.breadcrumb-box li a {
  color: var(--white);
  font-size: 16px;
}

.breadcrumb-box li:last-child a {
  pointer-events: none;
}

.breadcrumb-box li a:hover {
  color: #091f5f;
}

/* breadcrumb end */
#modal-list-sukien .modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--theme);
}

#modal-list-sukien .gphap-item {
  height: auto;
}

#modal-list-sukien .gphap-item .gp-left {
  height: auto;
  min-height: unset;
}

#modal-list-sukien .gphap-item .gp-right {
  padding: 16px 20px 0px;
}

#modal-list-sukien .gphap-item .gp-right .gp-title {
  font-size: 24px;
}

@media only screen and (max-width: 1650px) {
  .header .h-logo {
    width: 140px;
  }

  .header .h-search {
    width: 160px;
  }

  .header .h-login {
    width: 150px;
  }

  .header .h-menu {
    width: calc(100% - 450px);
    text-align: center;
  }
}

@media only screen and (max-width: 1366px) {
  .header .h-menu .lv1>li>.link {
    font-size: 16px;
    padding: 0 5px;
  }
}

@media only screen and (max-width: 1200px) {
  .h-menu {
    display: none;
  }

  .header .h-search .h-search-input {
    display: none;
  }

  .header .h-login {
    display: none;
  }

  .header .h-search .h-lang {
    float: left;
    margin: 0px 15px 0 0;
  }

  .header .h-search .menu-mb-btn {
    float: left;
    padding-top: 2px;
    display: block;
  }

  .header .h-search {
    width: 125px;
    float: right;
  }
}

@media only screen and (max-width: 991px) {
  .mb-on9 {
    display: block !important;
  }

  .mb-off9 {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .header .h-logo {
    width: 100px;
    padding: 0 15px;
    height: 80px;
    line-height: 80px;
  }

  .header .h-search {
    height: 80px;
    min-width: 50%;
  }

  .background-head {
    margin-top: 80px;
    height: 520px;
    background-size: cover;
    background-position: top;
    background-attachment: unset;
  }

  .background-head .bg-head-text {
    bottom: unset;
    top: 30px;
  }

  .background-head .bg-head-text .title {
    font-size: 21px;
  }

  .background-head .bg-head-text .sub-title {
    font-size: 15px;
  }

  .three-box .three-box-in {
    height: unset;
    width: 100%;
    padding: 15px 0;
  }

  .three-box .three-box-in .three-box-title {
    font-size: 22px;
    margin: 0 0 10px;
  }

  .three-box .three-box-in .three-box-des {
    font-size: 15px;
  }

  .header .h-search .h-search-in {
    padding-top: 25px;
    margin-right: 15px;
  }

  .mb-on7 {
    display: block !important;
  }

  .mb-off7 {
    display: none !important;
  }

  .view-scroll__list-item li {
    height: 60px;
  }

  .view-scroll__list-item li:not(:last-child) {
    margin: 0px 15px;
  }

  .view-scroll__list-item {
    -webkit-animation: c-ip-running-line-scroll 15s linear infinite;
    animation: c-ip-running-line-scroll 15s linear infinite;
  }

  .main-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .home-news {
    padding: 30px 0;
  }

  .news-item {
    padding: 12px;
  }

  .news-item .imgbox {
    float: left;
    width: 120px;
    margin-right: 15px;
  }

  .news-item .wrap-img {
    padding-bottom: 100%;
  }

  .news-item .text-box {
    padding: 0;
    float: left;
    width: calc(100% - 135px);
  }

  .news-item .text-box .n-title {
    font-size: 14px;
    -webkit-line-clamp: 3;
    height: unset;
  }

  .news-item {
    margin-bottom: 20px;
  }

  .news-item .n-tool {
    padding-top: 0;
    border: none;
  }

  .news-item .n-tool .n-tool-views {
    padding-right: 15px;
  }

  .news-item .n-tool .n-tool-heart {
    float: left;
  }

  .gphap-sp {
    padding: 30px 0;
  }

  .quotes .item {
    height: 400px;
  }

  .quotes .item .quotes-text p {
    font-size: 18px;
  }

  .quotes .item .quotes-text .type11,
  .quotes .item .quotes-text .type12,
  .quotes .item .quotes-text .type13 {
    font-size: 22px;
  }

  .quotes .item .quotes-text .type31 {
    font-size: 32px;
  }

  .quotes .owl-nav {
    display: none;
  }

  .ads-slide .owl-nav {
    display: none;
  }

  .news-item .text-box .n-des {
    display: none;
  }

  .footer .f-info {
    margin-bottom: 20px;
  }

  .footer .f-form {
    margin-bottom: 20px;
  }

  .copyright-box .copyright {
    margin-bottom: 15px;
  }

  .copyright-box .dkdv {
    text-align: left;
  }

  .upcoming-event {
    padding: 30px 0;
  }

  .doitac {
    padding: 30px 0;
  }

  .footer {
    padding: 30px 0;
  }

  .copyright-box {
    padding: 30px 0;
  }

  .ls-ptrien .ls-item {
    width: calc((100% - 60px) / 2);
    margin: 0 15px 60px;
  }

  .page-content .p-content {
    font-size: 14px;
  }

  .page-content {
    padding: 30px 0;
    /* margin-top: 80px; */
  }

  .ls-ptrien {
    padding: 30px 0;
  }

  .sodo-tochuc {
    padding: 30px 0;
  }

  .banld {
    padding: 30px 0;
  }

  .nhansu-item {
    width: 100%;
  }

  .vphoi {
    padding: 30px 0;
  }

  .vp-item {
    padding: 15px 20px;
  }

  .vp-item .vp-img {
    width: 100%;
    float: unset;
    height: unset;
  }

  .vp-item .vp-text {
    height: unset;
    width: 100%;
    text-align: center;
    padding: 10px 0 0;
  }

  .smenh-tnhin .sm-tn-img {
    width: 100%;
    height: auto;
    float: unset;
    margin: 0 0 20px;
  }

  .smenh-tnhin .sm-tn-text {
    width: 100%;
    float: unset;
  }

  .smenh-tnhin .sm-tn-text .sm-tn-text-pos {
    position: unset;
    transform: translate(0);
    padding: 0 15px;
  }

  .smenh-tnhin .sm-tn-text .sm-tn-text-pos h2 {
    font-size: 30px;
  }

  .smenh-tnhin .sm-tn-text .sm-tn-text-pos p {
    font-size: 18px;
    margin: 0 0 15px;
  }

  .smenh-tnhin .sm-tn-img2 {
    width: 100%;
    height: auto;
    float: unset;
    margin: 0 0 20px;
  }

  .smenh-tnhin .sm-tn-text2 {
    width: 100%;
    float: unset;
  }

  .smenh-tnhin .sm-tn-text2 .sm-tn-text2-pos {
    position: unset;
    transform: translate(0);
    padding: 0 15px;
  }

  .smenh-tnhin .sm-tn-text2 .sm-tn-text2-pos h2 {
    font-size: 30px;
  }

  .smenh-tnhin .sm-tn-text2 .sm-tn-text2-pos p {
    font-size: 18px;
    margin: 0 0 15px;
  }

  .smenh-tnhin {
    padding: 30px 0;
  }

  .tapchi {
    padding: 30px 0;
  }

  .hoitdh-item .hoitdh-img {
    width: 100%;
    height: unset;
    float: unset;
  }

  .hoitdh-item .hoitdh-text {
    width: 100%;
    float: unset;
    height: unset;
  }

  .hoitdh-item .hoitdh-text .link {
    position: relative;
    bottom: unset;
    left: unset;
    margin: 20px 0 0;
  }

  .hoitdh {
    padding: 30px 0;
  }

  .page-video {
    padding: 30px 0;
  }

  .page-video .pvideo-left {
    width: 100%;
    float: unset;
  }

  .page-video .pvideo-right {
    width: 100%;
    float: unset;
    padding: 0;
  }

  .banner-side {
    margin-top: 80px;
    padding: 30px 0;
  }

  .banner-side .bside-title {
    font-size: 30px;
  }

  .lich {
    padding: 30px 0;
  }

  .lich .table-head th {
    font-size: 16px;
    padding: 5px;
  }

  .lich .lich-title span {
    font-size: 16px;
  }

  .lich .lich-title {
    text-align: left;
  }

  .lich .lich-title .link {
    padding: 10px 20px;
  }

  .lich .table-body .lich-box {
    padding: 5px;
    font-size: 16px;
  }

  .main-custom {
    margin-bottom: 0;
  }

  .at-expo {
    padding: 30px 0;
  }

  .at-expo .left {
    width: 100%;
    float: unset;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .at-expo .left-pos {
    padding-top: 0;
  }

  .at-expo .right {
    width: 100%;
    float: unset;
    padding: 30px 20px;
  }

  .dk-skien {
    padding: 30px 0;
  }

  .ndetail-head {
    margin-top: 80px;
    padding: 30px 0;
  }

  .news-detail .news-detail-box {
    padding: 20px 15px;
  }

  .news-detail .nd-title {
    font-size: 20px;
  }

  .news-detail .nd-content {
    font-size: 16px;
  }

  .nd-comment .nd-comment-box {
    padding: 20px 15px;
  }

  .nd-comment .btn-box {
    margin-bottom: 20px;
  }

  .quyche-hv {
    padding: 30px 0;
  }

  .dk-hv p {
    font-size: 16px;
  }

  .dk-hv .form-box input {
    height: 40px;
  }

  .lien-he-map {
    height: 250px;
  }

  .lien-he-head {
    padding: 30px 0;
  }

  .lien-he-head .line-he-list h3 {
    font-size: 18px;
  }

  .lien-he-head .form-box input {
    height: 40px;
  }

  .lien-he-head .form-box textarea {
    height: 80px;
  }

  .view-scroll__list {
    width: 100%;
  }

  .news_slide .owl-dots {
    display: none;
  }

  .slide-counter {
    padding: 10px 0 10px;
    margin: 0 auto;
    width: fit-content;
  }

  .news_slide .owl-nav {
    bottom: -10px;
  }

  .news-item2.news-item {
    background: var(--white);
  }

  .news-item2.news-item .imgbox {
    float: right;
    margin-right: 0;
    margin-left: 15px;
  }

  .news-item2.news-item .text-box {
    float: right;
    width: calc(100% - 135px);
    min-height: unset;
  }

  .upcoming-event .uevent-link {
    margin-top: 20px;
  }

  .footer .f-menu {
    margin: 0;
  }

  .news-item3 {
    margin-bottom: 20px;
  }

  .gphap-item {
    height: unset;
  }

  .gphap-item .gp-left {
    width: 100%;
    float: unset;
    height: auto;
    min-height: unset;
  }

  .gphap-item .gp-right {
    float: unset;
    width: 100%;
    padding: 24px 20px;
  }

  .hd-hinhanh .hd-hinhleft {
    float: unset;
    width: 100%;
    margin: 0 0 20px;
  }

  .hd-hinhanh .hd-hinhleft .hd-hinhleft-pos {
    position: relative;
    top: unset;
    left: unset;
    transform: translate(0);
    text-align: center;
  }

  .hd-hinhanh .hd-hinhleft p {
    font-size: 31px;
    margin: 0 0 15px;
  }

  .hd-hinhanh .hd-hinhright {
    float: unset;
    width: 100%;
  }

  .doitac .item {
    height: 100px;
  }

  .tapchi-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .sk-main-title {
    padding-top: 30px;
    background-color: var(--theme);
    color: var(--white);
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .sk-home-news {
    background-color: var(--theme);
  }

  .sk-home-news .news-item3 .text-box {
    background-color: var(--white);
  }

  .sk-home-news .slide-counter {
    display: none !important;
  }

  .sk-home-news .h-news-link {
    /* display: none; */
  }

  .sk-home-news .owl-nav {
    display: none;
  }

  .chat-box {
    width: 50px;
    height: 50px;
  }

  .chat-box button {
    border-radius: 50%;
  }

  /* .social-fixbox {
    display: none;
  } */

  .chat-box button svg {
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@media only screen and (max-width: 500px) {
  .ls-ptrien .ls-item {
    width: 100%;
    margin: 0 0px 60px;
  }
}

.profile-title h2 {
  font-size: 28px;
  line-height: 40px;
  color: #227e00;
  margin-bottom: 12px;
}

.profile-title h3 {
  font-size: 20px;
  line-height: 28px;
  color: #227e00;
  margin-bottom: 12px;
}

.profile-title p {
  font-size: 16px;
  color: #227e00;
}

.profile-btn {
  padding: 0 16px;
  background-color: #205f09;
  color: #fff;
  font-size: 16px;
  height: 36px;
  line-height: 36px;
  border: none;
  border: 1px solid #205f09;
  min-width: 100px;
}

.profile-btn.active {
  background-color: #fff;
  border: 1px solid #205f09;
  color: #205f09;
  margin-right: 10px;
}

.profile-button {
  text-align: right;
}

.line {
  margin: 30px 0;
  border: 1px solid rgba(32, 95, 9, 0.2);
}

.form-profile .profile-title {
  margin-bottom: 30px;
}

.form-profile label {
  font-size: 14px;
  color: #227e00;
  margin-bottom: 14px;
  display: block;
  font-weight: 400;
}

.form-profile input {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border: 1px solid #227e00;
  padding: 0 12px;
  width: 100%;
  color: #227e00;
  background: transparent;
}

.profile-img h3 {
  color: #227e00;
  font-size: 16px;
  line-height: 22px;
  margin-right: 5px;
  display: inline-block;
}

.profile-img .profile-img-title svg {
  vertical-align: middle;
}

.profile-img .profile-img-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.profile-img-wrap {
  position: relative;
  width: 91px;
  height: 91px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #227e00;
  color: #fff;
}

.profile-img-wrap p {
  font-size: 60px;
}

.profile-img-wrap .profile-img-btn {
  position: absolute;
  width: 91px;
  height: 91px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  border-radius: 100%;
  background: rgba(216, 216, 216, 0.4);
  visibility: hidden;
  transition: all 0.3s linear;
}

.profile-img-wrap:hover .profile-img-btn {
  opacity: 1;
  visibility: visible;
}

.profile-img-btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: #fff;
  text-align: center;
  margin-right: 10px;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.profile-img-btn a svg {
  vertical-align: middle;
}

.profile-img-btn a:last-child {
  margin-right: 0;
}

.profile-note {
  position: relative;
}

.profile-note-text {
  position: absolute;
}

.profile-note .profile-note-text {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #212121;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  color: var(--white);
}

.profile-note:hover .profile-note-text {
  opacity: 1;
  visibility: visible;
}

.form-profile .form-group {
  position: relative;
  padding-right: 30px;
}

.form-profile .form-group .set-public {
  position: absolute;
  bottom: 10px;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
  text-align: center;
  right: 0;
  color: var(--bg2);
  background: transparent;
}

.profile-tk {
  padding: 30px 0 0;
}

.profile-tk form {
  margin-bottom: 25px;
}

.profile-tk form p {
  font-size: 16px;
  color: var(--theme);
  display: block;
}

.profile-tk form input {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 16px;
  color: var(--theme);
  pointer-events: none;
  display: block;
}

.link-edit {
  font-size: 16px;
  margin-top: 15px;
  border: none;
  background: transparent;
  padding: 0;
  color: var(--bg2);
}

.link-edit:hover {
  text-decoration: underline;
}

.tk-extra-list .tk-extra-list-box {
  margin-top: 30px;
}

.tk-extra-list-box .panel {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
}

.tk-extra-list-box .panel .faq-head {
  background: transparent;
}

.tk-extra-list-box .panel .faq-head a {
  font-size: 16px;
  color: var(--theme);
  width: 100%;
  display: block;
  padding: 20px 0 30px;
  position: relative;
}

.tk-extra-list-box .panel .faq-head a svg {
  position: absolute;
  right: 0;
  top: 18px;
  transition: var(--transition);
  transform: rotate(180deg);
}

.tk-extra-list-box .panel .faq-head a.collapsed svg {
  transform: rotate(0);
}

.tk-extra-list-box .faq-des p {
  font-size: 16px;
  color: var(--theme);
  margin: 0 0 10px;
}

.tk-extra-list-box .tk-content-div {
  padding: 20px 0;
}

.showpass,
.hidepass {
  cursor: pointer;
}

.d-none {
  display: none !important;
}