/** 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 8px 0px #ccc;
  border-right: 2px solid #ddd;
  color: #000;
  z-index: 1000;
}
.gv_mobile_menu .box {
  position: relative;
  display: block;
  height: 100%;
}
.gv_mobile_menu .box > button {
  position: absolute;
  right: 15px;
  top: 13px;
  height: 34px;
  width: 34px;
  background: rgb(255, 255, 255);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  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: 20px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  background: var(--mainBG);
  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;
}
.gv_mobile_menu .box .menu-nav .menu > li::before {
  content: "";
  height: 7px;
  width: 7px;
  top: 19px;
  position: absolute;
  left: 20px;
  background: var(--mainBG);
  border-radius: 10px;
}
.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: 20px;
}
.gv_mobile_menu .box .menu-nav .menu > li > i.arrow {
  position: absolute;
  right: 5px;
  top: 3px;
  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: 14px;
  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: 0;
  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.show {
  transform: translateX(0);
}

/** Heading
--------------------------------------------- */
.head_block {
  position: relative;
  font-family: var(--mainFont);
}
.head_block .title {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(152deg, #e7a193 0%, #db8776 20%, #ee9887 40%, #fab8aa 60%, #ffd6c6 80%, #f9b3a0 100%);
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

.head_section {
  position: relative;
  font-family: var(--mainFont);
}
.head_section .title {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  color: var(--secondColor);
  text-transform: uppercase;
  line-height: normal;
}

.head_taxonomy {
  position: relative;
  font-family: var(--mainFont);
}
.head_taxonomy .title {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: #333;
  line-height: normal;
  text-transform: uppercase;
}

.head_single {
  position: relative;
  font-family: var(--mainFont);
}
.head_single .title {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: #333;
  letter-spacing: 0px;
  line-height: normal;
}
.head_single .meta {
  display: block;
  margin-top: 10px;
}
.head_single .meta span {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  display: inline-block;
  padding: 2px 5px;
}
.head_single .meta span i {
  margin-right: 5px;
}

.head_panel {
  position: relative;
}
.head_panel .title {
  color: var(--mainColor);
  font-size: 22px;
  margin: 0;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.head_box {
  position: relative;
}
.head_box .title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #333;
  letter-spacing: 0.5px;
  position: relative;
}
.head_box .title span {
  display: flex;
  align-items: center;
  height: 26px;
  width: 40px;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.head_box .title span i {
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0% 100%, 50% 50%, 0% 0%);
          clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0% 100%, 50% 50%, 0% 0%);
  content: "";
  height: 100%;
  width: 10px;
  display: block;
  background: var(--secondColor);
}
.head_box .title span i:nth-child(1) {
  background: var(--secondColor);
  opacity: 0.4;
}
.head_box .title span i:nth-child(2) {
  background: var(--mainColor);
  opacity: 0.6;
}
.head_box .title span i:nth-child(3) {
  background: var(--thirdColor);
}

.head_block {
  position: relative;
}
.head_block .title {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  color: #000;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
}

.head_blog {
  position: relative;
}
.head_blog .title {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  color: var(--mainColor);
  letter-spacing: 0.5px;
  position: relative;
}
@media (max-width: 767px) {
  .head_blog .title {
    font-size: 24px;
  }
}

.head_footer {
  position: relative;
}
.head_footer .title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.4px;
  color: #fff;
  position: relative;
}

/** Desc
--------------------------------------------- */
.desc {
  font-family: var(--mainFont);
  font-size: 15px;
  line-height: 1.66;
  font-weight: 400;
}
.desc ul, .desc ol {
  padding-left: 20px;
}
.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 iframe {
  width: 100%;
}

/** Entry Content
--------------------------------------------- */
.entry-content {
  font-family: var(--mainFont);
  font-size: 15px;
  line-height: 1.67;
  text-align: justify;
  font-weight: 400;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content h1 {
  font-size: 1.9em;
}
.entry-content h2 {
  font-size: 1.65em;
}
.entry-content h3 {
  font-size: 1.45em;
}
.entry-content h4 {
  font-size: 1.2em;
}
.entry-content h5 {
  font-size: 1.05em;
}
.entry-content h6 {
  font-size: 1em;
}
.entry-content table {
  border: 1px solid #ddd;
  width: 100%;
  position: relative;
}
.entry-content table tr th {
  background: #333;
  padding: 6px 12px;
  font-size: 15px;
  border: 1px solid #fff;
  color: #fff;
}
.entry-content table tr td {
  padding: 6px 12px;
  font-size: 15px;
  border: 1px solid #ddd;
}
.entry-content iframe {
  max-width: 100%;
}
.entry-content object {
  max-width: 100%;
}
.entry-content ol, .entry-content ul {
  padding-left: 30px;
}

/** Loop
--------------------------------------------- */
.post_inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.post_inner .image {
  position: relative;
  flex: 0 0 45%;
  max-width: 45%;
  padding-left: 8px;
  padding-right: 8px;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 68%;
  position: relative;
  width: 100%;
  background-position: center;
}
.post_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%;
}
.post_inner .info {
  flex: 0 0 55%;
  max-width: 55%;
  padding-left: 8px;
  padding-right: 8px;
}
.post_inner .info h3 {
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 0;
  position: relative;
}
.post_inner .info h3 a {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}
.post_inner .info h3 a:hover {
  color: var(--mainColor);
}
.post_inner .info .date {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  font-style: italic;
}

.news_inner {
  position: relative;
  padding: 0px;
  border: 3px solid #d0997e;
  overflow: hidden;
  border-radius: 20px;
}
.news_inner .image {
  position: relative;
}
.news_inner .image > a {
  display: block;
  padding-bottom: 110%;
  position: relative;
  width: 100%;
  background-position: center;
}
.news_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%;
}
.news_inner .info {
  position: absolute;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .news_inner .info {
    height: 88px;
    padding: 5px 5px;
  }
}
.news_inner .info h3 {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 0px;
  margin-bottom: 0px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .news_inner .info h3 {
    font-size: 16px;
    line-height: 1.2;
  }
}
.news_inner .info h3 a {
  color: var(--mainColor);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}
.news_inner .info h3 a:hover {
  color: var(--secondColor);
}

.project_inner {
  position: relative;
  height: 100%;
  background: #fff;
  transition: all 0.4s ease 0s;
  box-shadow: 0px 2px 28px rgba(0, 0, 0, 0.06);
}
.project_inner .image {
  position: relative;
}
.project_inner .image a {
  padding-bottom: 50%;
  display: block;
  position: relative;
  width: 100%;
  background-position: center;
  overflow: hidden;
}
.project_inner .image a img {
  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%;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.project_inner .info {
  padding: 15px;
  position: relative;
}
.project_inner .info h3 {
  font-family: var(--mainFont);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 13px;
  transition: all 0.4s ease 0s;
}
.project_inner .info h3 a {
  color: var(--mainColor);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.project_inner .info .desc {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.project_inner .info .deploy {
  position: relative;
  padding-bottom: 15px;
}
.project_inner .info .deploy span {
  background: var(--mainColor);
  font-size: 13px;
  line-height: 20px;
  padding: 3px 11px;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-family: "Helvetica Neue";
}
.project_inner .info .place p {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 1.55;
}
.project_inner .info .place p i {
  background-image: url(../images/icon-location.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0px;
  top: 3px;
  width: 13px;
  height: 17px;
}
.project_inner .info .more {
  padding-top: 15px;
  position: relative;
  border-top: 1px solid #f4f4f4;
}
.project_inner .info .more a {
  display: inline-flex;
  align-items: center;
  line-height: 20px;
  padding: 8px 16px;
  background: #efefef;
  border-radius: 45px;
  font-size: 15px;
  font-weight: 400;
  color: var(--secondColor);
  transition: all 0.4s ease-in-out;
}
.project_inner .info .more a i {
  margin-left: 10px;
}
.project_inner:hover .image a img {
  transform: scale(1.1);
}
.project_inner:hover .info .more a {
  background: var(--secondColor);
  color: #fff;
}

.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: 10px;
  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;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  padding: 0px;
  height: 100%;
  box-shadow: 0px 2px 28px rgba(0, 0, 0, 0.06);
}
.recruit_inner .image > a {
  position: relative;
  padding-bottom: 62%;
  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: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.24;
}
.recruit_inner .info h3 a {
  color: #553010;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}
.recruit_inner .info h3 a:hover {
  color: #e7ab2d;
}
.recruit_inner .info .more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.recruit_inner .info .more span {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  line-height: 1.1;
}
.recruit_inner .info .more span i {
  font-style: normal;
  font-weight: 600;
  color: var(--secondColor);
}
.recruit_inner .info .more a {
  display: inline-flex;
  align-items: center;
  line-height: 20px;
  padding: 8px 16px;
  background: #efefef;
  border-radius: 45px;
  font-size: 15px;
  font-weight: 400;
  color: var(--secondColor);
  transition: all 0.4s ease-in-out;
}
.recruit_inner .info .more a i {
  margin-left: 10px;
}

.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: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 5px;
  letter-spacing: 0.5px;
}
.search_inner .info h3 a {
  color: #553010;
}
.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: #e7ab2d;
  color: #fff;
  line-height: 20px;
  margin-right: 10px;
}

.leader_inner .image {
  display: flex;
  justify-content: center;
  padding-bottom: 16px;
}
.leader_inner .image a {
  display: block;
  border-radius: 100%;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--secondColor);
}
.leader_inner .image a img {
  height: 160px;
  width: 160px;
  border-radius: 100%;
}
.leader_inner .info h3 {
  font-family: var(--mainFont);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.leader_inner .info h3 a {
  color: #fff;
}
.leader_inner .info .regency {
  font-family: var(--mainFont);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

/** 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 iframe {
  vertical-align: bottom;
}
.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;
}

/** ANIMATION */
@keyframes mouse-wheel {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(13px);
    opacity: 0;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}/*# sourceMappingURL=style.css.map */