/** Style
--------------------------------------------- */
/** Mobile Menu
--------------------------------------------- */
.gv_mobile_menu {
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  width: 100%;
  max-width: 380px;
  left: 0;
  top: 0;
  transition: all 0.45s ease 0s;
  transform: translateX(-110%);
  background: #fff;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.33);
  color: var(--primary-Color);
  z-index: 1000;
}
.gv_mobile_menu .box {
  position: relative;
  display: block;
  height: 100%;
}
.gv_mobile_menu .box > button {
  position: absolute;
  right: 15px;
  top: 16px;
  height: 34px;
  width: 34px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  z-index: 5;
}
.gv_mobile_menu .box > button i {
  font-size: 18px;
}
.gv_mobile_menu .box .menu-header {
  padding: 25px 20px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  background: var(--primary-Color);
  color: #fff;
}
.gv_mobile_menu .box .search-nav {
  position: relative;
  z-index: 11;
  background: #f1f1f1;
  overflow: hidden;
  display: block;
  padding: 20px 20px 20px;
  transition: all 0.06s ease 0.43s;
}
.gv_mobile_menu .box .search-nav form {
  display: block;
  width: 100%;
  position: relative;
  background: #fff;
}
.gv_mobile_menu .box .search-nav form input {
  border: 0;
  padding: 10px 10px;
  line-height: 20px;
  font-size: 14px;
  outline: none;
  padding-right: 40px;
  width: 100%;
  background: transparent;
}
.gv_mobile_menu .box .search-nav form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  outline: none;
  padding: 0;
  color: #000;
  background: transparent;
}
.gv_mobile_menu .box .search-nav form button i {
  font-size: 16px;
  color: #000;
}
.gv_mobile_menu .box .menu-nav {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.gv_mobile_menu .box .menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_mobile_menu .box .menu-nav .menu > li {
  display: block;
  position: relative;
  padding: 0 15px 0 35px;
  border-bottom: 1px dashed #eee;
}
.gv_mobile_menu .box .menu-nav .menu > li::before {
  content: "";
  height: 7px;
  width: 7px;
  top: 20px;
  position: absolute;
  left: 20px;
  background: var(--primary-Color);
  border-radius: 2px;
  transform: rotate(45deg);
}
.gv_mobile_menu .box .menu-nav .menu > li > a {
  display: block;
  padding: 13px 0px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 22px;
  text-transform: uppercase;
}
.gv_mobile_menu .box .menu-nav .menu > li > i.arrow {
  position: absolute;
  right: 5px;
  top: 4px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.45s ease 0s;
}
.gv_mobile_menu .box .menu-nav .menu > li > i.open {
  transform: rotate(180deg);
}
.gv_mobile_menu .box .menu-nav .menu > li ul {
  display: none;
  position: relative;
}
.gv_mobile_menu .box .menu-nav .menu > li ul > li {
  padding-left: 10px;
  position: relative;
  display: block;
}
.gv_mobile_menu .box .menu-nav .menu > li ul > li > a {
  display: block;
  padding: 10px 0px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
}
.gv_mobile_menu .box .menu-nav .menu > li ul > li > i.arrow {
  position: absolute;
  right: 0;
  top: 0px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.45s ease 0s;
}
.gv_mobile_menu .box .menu-nav .menu > li ul > li > i.open {
  transform: rotate(180deg);
}
.gv_mobile_menu .box .menu-nav .menu > li:last-child {
  border-bottom: 0;
}

.gv_mobile_menu.show {
  transform: translateX(0);
}

/** Heading
--------------------------------------------- */
.head_section {
  position: relative;
}
.head_section .title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  color: var(--primary-Color);
  letter-spacing: 0.4px;
}
.head_section .sub {
  font-size: 18px;
  font-weight: 300;
  padding-top: 9px;
  color: #000;
  letter-spacing: 0.4px;
}
.head_section .image {
  padding-top: 10px;
}
.head_section .image img {
  max-width: 100%;
  width: auto;
  height: 30px;
}
.head_section .divide {
  height: 12px;
  position: relative;
}
.head_section .divide::before {
  content: "";
  height: 4px;
  width: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: skewX(-24deg);
  background: var(--second-Color);
}
.head_section .divide::after {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: 80px;
  border-radius: 0px;
  background: var(--primary-Color);
  transform: skewX(-24deg);
  left: 20px;
  bottom: 0px;
}

.head_section.text-center .divide {
  height: 12px;
  position: relative;
}
.head_section.text-center .divide::before {
  left: calc(50% - 28px);
  transform: skewX(-24deg) translateX(-50%);
  width: 50px;
}
.head_section.text-center .divide::after {
  left: calc(50% + 28px);
  transform: skewX(-24deg) translateX(-50%);
  width: 50px;
}

.head_single {
  position: relative;
}
.head_single .title {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-Color);
  letter-spacing: 0.4px;
}
.head_single .divide {
  height: 12px;
  position: relative;
}
.head_single .divide::before {
  content: "";
  height: 4px;
  width: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: skewX(-24deg);
  background: var(--second-Color);
}
.head_single .divide::after {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: 80px;
  border-radius: 0px;
  background: var(--primary-Color);
  transform: skewX(-24deg);
  left: 20px;
  bottom: 0px;
}

.head_single.text-center .divide {
  height: 12px;
  position: relative;
}
.head_single.text-center .divide::before {
  left: calc(50% - 28px);
  transform: skewX(-24deg) translateX(-50%);
  width: 50px;
}
.head_single.text-center .divide::after {
  left: calc(50% + 28px);
  transform: skewX(-24deg) translateX(-50%);
  width: 50px;
}

.head_panel {
  position: relative;
}
.head_panel .title {
  background: var(--primary-Color);
  color: #fff;
  font-size: 16px;
  margin: 0;
  padding: 12px 15px;
  border-radius: 6px;
  position: relative;
  line-height: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.head_box {
  position: relative;
}
.head_box .title {
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-Color);
  letter-spacing: 0.4px;
  position: relative;
}
.head_box .divide {
  height: 12px;
  position: relative;
}
.head_box .divide::before {
  content: "";
  height: 4px;
  border-radius: 0;
  width: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--second-Color);
}

.head_box.text-center .divide {
  height: 12px;
  position: relative;
}
.head_box.text-center .divide::before {
  left: 50%;
  transform: translateX(-50%);
}

.head_box.text-right .title {
  text-align: right;
}
.head_box.text-right .divide {
  height: 10px;
  position: relative;
}
.head_box.text-right .divide::before {
  left: initial;
  right: 0;
}
.head_box.text-right .divide::after {
  left: initial;
  right: 0;
  transform: rotate(-45deg);
}

.head_block {
  position: relative;
}
.head_block .title {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}
.head_block .title::before {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-Color);
  z-index: -1;
}
.head_block .title span {
  background: var(--primary-Color);
  display: inline-block;
  padding: 10px 15px;
  border-radius: 2px;
  position: relative;
}

/** Desc
--------------------------------------------- */
.desc {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
}
.desc ul, .desc ol {
  padding-left: 18px;
}
.desc h1 {
  font-size: 24px;
}
.desc h2 {
  font-size: 21px;
}
.desc h3 {
  font-size: 18px;
}
.desc h4 {
  font-size: 16px;
}
.desc h5 {
  font-size: 15px;
}
.desc h6 {
  font-size: 14px;
}
.desc h1, .desc h2, .desc h3, .desc h4, .desc h5, .desc h6 {
  font-weight: 600;
}

/** Entry Content
--------------------------------------------- */
.entry-content {
  font-family: var(--primary-Font);
  font-size: 16px;
  line-height: 1.67;
  text-align: justify;
}
.entry-content h1 {
  font-size: 1.65em;
}
.entry-content h2 {
  font-size: 1.45em;
}
.entry-content h3 {
  font-size: 1.3em;
}
.entry-content h4 {
  font-size: 1.2em;
}
.entry-content h5 {
  font-size: 1.1em;
}
.entry-content h6 {
  font-size: 1em;
}
.entry-content iframe {
  max-width: 100%;
}
.entry-content object {
  max-width: 100%;
}
.entry-content table {
  position: relative;
  margin-bottom: 16px;
  width: 100%;
  border: 1px solid #ccc;
}
.entry-content table tbody tr td {
  border: 1px solid #ccc;
  padding: 8px 12px;
}
.entry-content table tbody tr:nth-child(even) {
  background: #eee;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}

/** Loop
--------------------------------------------- */
.project_inner {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--primary-Font);
}
.project_inner .image {
  position: relative;
  flex: 1;
}
.project_inner .image > a {
  padding-bottom: 62%;
  display: block;
  position: relative;
  background-position: center;
  width: 100%;
  overflow: hidden;
}
.project_inner .image > a img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.project_inner .info {
  flex: 1;
  position: relative;
  padding: 16px 16px;
  border: 2px solid var(--primary-Color);
  border-radius: 0 0 10px 10px;
  border-top: 0;
  height: 100%;
}
.project_inner .info h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
  margin-bottom: 1px;
  text-transform: uppercase;
}
.project_inner .info h3 > a {
  color: var(--primary-Color);
}
.project_inner .info .place {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  color: var(--primary-Color);
}
.project_inner .info .more {
  display: block;
  padding-top: 12px;
}
.project_inner .info .more a {
  display: inline-block;
  padding: 7px 15px 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  border-radius: 6px;
  color: #fff;
  background: var(--primary-Color);
}

.relative_inner {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--primary-Font);
}
.relative_inner .image {
  position: relative;
  flex: 1;
}
.relative_inner .image > a {
  padding-bottom: 62%;
  display: block;
  position: relative;
  background-position: center;
  width: 100%;
  overflow: hidden;
}
.relative_inner .image > a img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.relative_inner .info {
  flex: 1;
  position: relative;
  padding: 12px;
  border: 2px solid var(--primary-Color);
  border-radius: 0 0 10px 10px;
  border-top: 0;
  height: 100%;
}
.relative_inner .info h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  margin-bottom: 1px;
  text-transform: uppercase;
}
.relative_inner .info h3 > a {
  color: var(--primary-Color);
}
.relative_inner .info .place {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  color: var(--primary-Color);
}
.relative_inner .info .more {
  display: block;
  padding-top: 12px;
}
.relative_inner .info .more a {
  display: inline-block;
  padding: 5px 15px 7px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  border-radius: 6px;
  color: #fff;
  background: var(--primary-Color);
}

.post_inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.post_inner .image {
  flex: 0 0 32%;
  max-width: 32%;
}
.post_inner .image > a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
.post_inner .image > a img {
  width: 100%;
  height: auto;
}
.post_inner .info {
  flex: 0 0 68%;
  max-width: 68%;
  padding-left: 20px;
  padding-top: 16px;
}
.post_inner .info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}
.post_inner .info h3 a {
  color: #000;
}
.post_inner .info h3 a:hover {
  color: var(--primary-Color);
}
.post_inner .info .desc {
  font-size: 14px;
  line-height: 1.52;
  display: -webkit-box;
  color: #000;
  margin-bottom: 15px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 61px;
  font-style: italic;
}
.post_inner .info .more {
  position: relative;
}
.post_inner .info .more > a {
  display: inline-block;
  padding: 5px 15px 7px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  border-radius: 4px;
  color: #fff;
  background: var(--primary-Color);
}
.post_inner .info .more > span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .post_inner .image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .post_inner .image > a {
    width: 100%;
    max-width: 380px;
  }
  .post_inner .info {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
}
.comment_inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.comment_inner .avatar {
  max-width: 50px;
  min-width: 50px;
}
.comment_inner .avatar img {
  display: inline-block;
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  box-shadow: 0px 0px 2px 0px #ccc;
}
.comment_inner .info {
  flex: 1;
  max-width: 100%;
  padding-left: 15px;
}
.comment_inner .info h4.name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.comment_inner .info h4.name span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
}
.comment_inner .info .star {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.comment_inner .info .star span {
  margin-left: 7px;
  font-size: 15px;
  display: inline-block;
}
.comment_inner .info .star span i {
  color: #e7ab2d;
}
.comment_inner .info .content {
  background: #eee;
  border-radius: 6px;
  padding: 15px;
  width: 100%;
  max-width: 550px;
}
.comment_inner .info .sub-comment {
  position: relative;
  padding-top: 10px;
  padding-left: 20px;
}
.comment_inner .info .sub-comment .sub-item {
  background: #f9f9f9;
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
  border-radius: 6px;
  width: 100%;
  max-width: 550px;
  display: block;
  margin-bottom: 10px;
  position: relative;
}
.comment_inner .info .sub-comment .sub-item::before {
  content: "";
  height: 10px;
  width: 10px;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  background: #f9f9f9;
  position: absolute;
  left: -10px;
  top: 20px;
}
.comment_inner .info .sub-comment .sub-item h5 {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  color: #553010;
}
.comment_inner .info .sub-comment .sub-item p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}
.comment_inner .info .sub-comment .sub-item:last-child {
  margin-bottom: 10px;
}

.recruit_inner {
  position: relative;
  padding: 0;
  background: #f4f4f4;
  border-radius: 6px;
  overflow: hidden;
  padding: 0px;
}
.recruit_inner .image > a {
  position: relative;
  padding-bottom: 55%;
  display: block;
  width: 100%;
  background-position: center;
  overflow: hidden;
  border-radius: 0px;
}
.recruit_inner .image > a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.recruit_inner .info {
  padding: 15px;
  position: relative;
}
.recruit_inner .info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.recruit_inner .info h3 a {
  color: var(--primary-Color);
}
.recruit_inner .info h3 a:hover {
  color: #444;
}
.recruit_inner .info .param {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}
.recruit_inner .info .param span {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
}
.recruit_inner .info .param span.salary {
  color: var(--second-Color);
  padding-right: 15px;
}
.recruit_inner .info .param span.duration {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 3px;
}

.search_inner {
  position: relative;
  display: flex;
}
.search_inner .image {
  min-width: 80px;
  max-width: 80px;
}
.search_inner .image > a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.search_inner .image > a img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.search_inner .info {
  flex: 1;
  padding-left: 15px;
}
.search_inner .info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 5px;
  letter-spacing: 0.4px;
}
.search_inner .info h3 a {
  color: var(--primary-Color);
}
.search_inner .info .meta {
  display: flex;
  align-items: center;
}
.search_inner .info .meta span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}
.search_inner .info .meta span.tag {
  display: inline-block;
  font-size: 12px;
  padding: 1px 7px;
  border-radius: 4px;
  background: #1d9bf0;
  color: #fff;
  line-height: 20px;
  margin-right: 10px;
}

/** Share Box
--------------------------------------------- */
.share-box > span {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.share-box .share-inner {
  display: flex;
  align-items: center;
}
.share-box .share-inner .zalo-share-button {
  margin-right: 10px;
}
.share-box .share-inner .fb-share-button {
  margin-right: 10px;
}
.share-box .share-inner .tw-share-button > a {
  display: flex;
  background: #1d9bf0;
  border-radius: 4px;
  height: 20px;
  font-size: 13px;
  align-items: center;
  padding: 0 12px;
  color: #fff;
}
.share-box .share-inner .tw-share-button > a i {
  margin-right: 4px;
}/*# sourceMappingURL=style.css.map */