.container-flex {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1599px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1270px;
  }
}
/** HEADER ============================================*/
/** Header Main */
.gv_header_block {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0px 0;
  transition: all 0.3s ease 0s;
  z-index: 999;
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 1023px) {
  .gv_header_block {
    display: none;
  }
}
.gv_header_block .container .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.gv_header_block .container .flex .flx-left {
  display: flex;
  align-items: center;
}
.gv_header_block .logo {
  display: block;
  padding: 6px 0;
  padding-right: 80px;
}
.gv_header_block .logo img {
  height: 58px;
  width: auto;
}
.gv_header_block .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.gv_header_block .menu > li {
  display: inline-block;
  position: relative;
  margin-right: 0px;
}
.gv_header_block .menu > li > a {
  display: block;
  padding: 32px 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  transition: all 0.3s ease 0s;
  background: transparent;
  text-transform: uppercase;
}
.gv_header_block .menu > li > .sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  z-index: 11;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.gv_header_block .menu > li > .sub-menu::before {
  height: 9px;
  width: 18px;
  top: -9px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
  position: absolute;
  left: 20px;
  display: block;
  content: "";
  z-index: 9;
}
.gv_header_block .menu > li > .sub-menu > li {
  display: block;
  position: relative;
}
.gv_header_block .menu > li > .sub-menu > li > a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #000;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
  transition: all 0.3s ease 0s;
}
.gv_header_block .menu > li > .sub-menu > li ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  background: #fff;
  width: 100%;
}
.gv_header_block .menu > li > .sub-menu > li ul > li {
  display: block;
  position: relative;
}
.gv_header_block .menu > li > .sub-menu > li ul > li > a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #000;
  border-bottom: 1px solid #efefef;
  padding-left: 30px;
  position: relative;
  transition: all 0.3s ease 0s;
}
.gv_header_block .menu > li > .sub-menu > li ul > li:hover > a {
  color: var(--primary-Color);
}
.gv_header_block .menu > li > .sub-menu > li ul > li:hover > ul {
  display: block;
}
.gv_header_block .menu > li > .sub-menu > li ul > li:last-child > a {
  margin-bottom: 0;
}
.gv_header_block .menu > li > .sub-menu > li:hover > a {
  color: var(--primary-Color);
}
.gv_header_block .menu > li > .sub-menu > li:hover > ul {
  display: block;
}
.gv_header_block .menu > li > .sub-menu > li:last-child > a {
  margin-bottom: 0;
}
.gv_header_block .menu > li:hover > a {
  color: var(--second-Color);
}
.gv_header_block .menu > li:hover > ul {
  display: block;
}
.gv_header_block .menu > li:last-child > a {
  margin-right: 0;
}
.gv_header_block .menu > li.menu-item-has-children > a {
  padding-right: 42px;
}
.gv_header_block .menu > li.menu-item-has-children svg {
  position: absolute;
  right: 20px;
  height: 14px;
  width: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.gv_header_block .menu > li.menu-item-has-children:hover svg path {
  fill: var(--primary-Color);
  stroke: var(--primary-Color);
}
.gv_header_block .menu > li.active > a {
  color: var(--primary-Color);
  background: rgba(255, 255, 255, 0.85);
}
.gv_header_block .hotline {
  margin-left: 20px;
  display: block;
}
.gv_header_block .hotline > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 0px;
  line-height: 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
  background-color: var(--second-Color);
  border-radius: 30px;
}
.gv_header_block .hotline > a svg {
  height: 14px;
  width: 14px;
  margin-right: 8px;
}
.gv_header_block .hotline > a svg path {
  fill: #fff;
  stroke: #fff;
}

.gv_header_block.fixed {
  position: fixed;
  background: #fff;
  border-bottom: 2px solid var(--second-Color);
}
.gv_header_block.fixed .logo {
  display: block;
  padding: 6px 0;
  padding-right: 80px;
}
.gv_header_block.fixed .logo img {
  height: 50px;
  width: auto;
}
.gv_header_block.fixed .menu > li > a {
  color: var(--primary-Color);
  padding: 26px 12px;
}
.gv_header_block.fixed .menu > li > a:hover {
  color: var(--second-Color);
}
.gv_header_block.fixed .menu > li.menu-item-has-children > a {
  padding-right: 34px;
}
.gv_header_block.fixed .menu > li.menu-item-has-children svg {
  position: absolute;
  right: 20px;
  height: 14px;
  width: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.gv_header_block.fixed .menu > li.menu-item-has-children:hover svg path {
  fill: var(--primary-Color);
  stroke: var(--primary-Color);
}

/** Header Mobile */
.gv_mobile_block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  color: #000;
  padding: 12px 0;
  transition: all 0.3s ease 0s;
  z-index: 999;
  border-bottom: 2px solid var(--second-Color);
  display: none;
}
@media (max-width: 1023px) {
  .gv_mobile_block {
    display: block;
  }
}
.gv_mobile_block .container .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gv_mobile_block .container .flex .flx-left {
  flex: 1;
}
.gv_mobile_block .container .flex .flx-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_mobile_block .logo {
  display: block;
}
.gv_mobile_block .logo img {
  height: 48px;
  width: auto;
}
.gv_mobile_block button {
  height: 36px;
  width: 36px;
  background: var(--second-Color);
  border: 2px solid var(--second-Color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.gv_mobile_block button i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
  filter: brightness(0) invert(1);
}

.gv_mobile_block.fixed {
  position: fixed;
  background: #fff;
}

/** Menu Block */
.gv_menu_block {
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.5s ease 0s;
  z-index: 9999;
  width: 90%;
  max-width: 360px;
  background: #fff;
  transform: translateX(-110%);
  height: 100vh;
  font-family: var(--primary-Font);
}
.gv_menu_block .head-nav {
  background: #f8f8f8;
  padding: 15px 15px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.gv_menu_block .head-nav .name {
  line-height: 1;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  color: var(--primary-Color);
}
.gv_menu_block .head-nav > button {
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0px;
  background: var(--primary-Color);
}
.gv_menu_block .head-nav > button i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}
.gv_menu_block .search-nav {
  background: #f8f8f8;
  padding: 0 15px 20px;
}
.gv_menu_block .search-nav form {
  display: block;
  position: relative;
  width: 100%;
}
.gv_menu_block .search-nav form input[type=text] {
  background: #dfdfdf;
  border: 0;
  outline: none;
  border-radius: 6px;
  line-height: 20px;
  padding: 10px 16px;
  width: 100%;
  color: #000;
  padding-right: 44px;
}
.gv_menu_block .search-nav form button {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  z-index: 2;
}
.gv_menu_block .search-nav form button i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}
.gv_menu_block .menu-nav {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.gv_menu_block .menu-nav > li {
  position: relative;
  display: block;
}
.gv_menu_block .menu-nav > li > a {
  color: #333;
  padding: 12px 18px;
  display: flex;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px dotted #eee;
  line-height: 20px;
}
.gv_menu_block .menu-nav > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 44px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px auto;
  color: #333;
}
.gv_menu_block .menu-nav > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .menu-nav > li > .sub-menu {
  display: none;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_menu_block .menu-nav > li > .sub-menu > li {
  display: block;
  position: relative;
  padding: 0 0px;
}
.gv_menu_block .menu-nav > li > .sub-menu > li > a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.gv_menu_block .menu-nav > li > .sub-menu > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.gv_menu_block .menu-nav > li > .sub-menu > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul {
  display: none;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li {
  display: block;
  position: relative;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li > a {
  padding: 10px 20px;
  padding-left: 24px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.gv_menu_block .menu-nav > li > .sub-menu > li ul > li > i.arrow.show {
  transform: rotate(180deg);
}

.gv_menu_block.open {
  transform: translateX(0);
}

/** FOOTER ============================================*/
.gv_footer_block {
  position: relative;
  padding: 48px 0;
  background: var(--primary-Color);
  overflow: hidden;
}
.gv_footer_block .bg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: top left;
  background-size: cover;
  opacity: 0.84;
}
.gv_footer_block .container {
  position: relative;
  z-index: 4;
}
.gv_footer_block .container .row > [class*=col-] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.gv_footer_block .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .menu > li {
  display: block;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
}
.gv_footer_block .menu > li:last-child {
  padding-bottom: 0;
}
.gv_footer_block .menu > li a {
  color: #fff;
}
.gv_footer_block .menu > li a:hover {
  color: var(--second-Color);
}
.gv_footer_block .logo {
  display: block;
  margin-bottom: 20px;
}
.gv_footer_block .logo a {
  display: inline-block;
}
.gv_footer_block .logo a img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}
.gv_footer_block .desc {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #fff;
}
.gv_footer_block .contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .contact > li {
  display: block;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  padding-left: 24px;
  font-weight: 500;
  color: #fff;
}
.gv_footer_block .contact > li svg {
  height: 16px;
  width: 16px;
  position: absolute;
  left: 0;
  top: 3px;
  fill: #fff;
}
.gv_footer_block .contact > li:last-child {
  padding-bottom: 0;
}

/** HEADING ============================================*/
.head_section {
  position: relative;
  font-family: var(--primary-Font);
}
.head_section .title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  color: var(--primary-Color);
}
@media (max-width: 767px) {
  .head_section .title {
    font-size: 21px;
  }
}
.head_section .sub {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
.head_section img {
  margin-top: 10px;
  max-width: 100%;
  height: auto;
}

.head_blog {
  position: relative;
  font-family: #fff;
}
.head_blog .title {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .head_blog .title {
    font-size: 26px;
  }
}

.head_footer {
  position: relative;
  font-family: var(--primary-Font);
}
.head_footer .title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  color: #fff;
}

/** BREADCRUMB ============================================*/
.gv_breadcrumb_block {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  background: #f0f0f0;
}
.gv_breadcrumb_block .breadcrumb-nav {
  margin-bottom: 0;
}
.gv_breadcrumb_block .breadcrumb-nav p {
  margin-bottom: 0;
}
.gv_breadcrumb_block .breadcrumb-nav span,
.gv_breadcrumb_block .breadcrumb-nav a {
  font-family: var(--primary-Color);
  font-size: 14px;
  color: #333;
  line-height: normal;
}
.gv_breadcrumb_block .breadcrumb-nav a {
  color: var(--primary-Color);
}

/** BANNER ============================================*/
.gv_banner_blog {
  position: relative;
  overflow: hidden;
}
.gv_banner_blog .bg {
  position: relative;
  display: block;
  padding-bottom: 30%;
  width: 100%;
  background-position: center;
}
@media (max-width: 767px) {
  .gv_banner_blog .bg {
    padding-bottom: 70%;
  }
}
@media (max-width: 575px) {
  .gv_banner_blog .bg {
    padding-bottom: 90%;
  }
}
.gv_banner_blog .bg 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%;
}
.gv_banner_blog .bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.4;
  z-index: 2;
}
.gv_banner_blog .head_blog .title {
  color: #fff;
}
.gv_banner_blog .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}
.gv_banner_blog .info .breadcrumb-nav {
  margin-bottom: 0;
  text-align: center;
}
.gv_banner_blog .info .breadcrumb-nav p {
  margin-bottom: 0;
}
.gv_banner_blog .info .breadcrumb-nav i {
  margin: 0 8px;
}
.gv_banner_blog .info .breadcrumb-nav span,
.gv_banner_blog .info .breadcrumb-nav a {
  font-family: var(--primary-Color);
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  line-height: normal;
}
.gv_banner_blog .info .breadcrumb-nav a {
  color: #fff;
  font-weight: 500;
}

/** CONTENT ============================================*/
.entry-content {
  font-family: var(--primary-Font);
  font-size: 15px;
  line-height: 1.67;
  text-align: justify;
}
.entry-content img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.entry-content h1 {
  font-size: 1.6em;
}
.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.05em;
}
.entry-content h6 {
  font-size: 1em;
}
.entry-content iframe {
  max-width: 100%;
}
.entry-content object {
  max-width: 100%;
}
.entry-content ol, .entry-content ul {
  padding-left: 18px;
}
.entry-content ol li, .entry-content ul li {
  padding-bottom: 4px;
}
.entry-content ol li:last-child, .entry-content ul li:last-child {
  padding-bottom: 0;
}
.entry-content table {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 16px;
}
.entry-content table tr td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}
.entry-content .wp-block-image {
  margin-bottom: 20px;
}
.entry-content .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
}
.entry-content .aligncenter img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
}
.entry-content .alignleft img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.entry-content .alignright img {
  max-width: 100%;
  height: auto;
}
.entry-content .wp-caption-text {
  background: #fdfdfd;
  text-align: center;
  margin-bottom: 13px;
  font-style: italic;
  padding: 6px;
  font-size: 13px;
}

.desc {
  font-family: var(--primary-Font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.desc img {
  max-width: 100%;
  height: auto;
}
.desc ol, .desc ul {
  padding-left: 18px;
}
.desc ol li, .desc ul li {
  padding-bottom: 4px;
}
.desc ol li:last-child, .desc ul li:last-child {
  padding-bottom: 0;
}
.desc table {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 16px;
}
.desc table tr td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}
.desc iframe, .desc object {
  width: 100%;
}
.desc .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
}
.desc .aligncenter img {
  max-width: 100%;
  height: auto;
}
.desc .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
}
.desc .alignleft img {
  max-width: 100%;
  height: auto;
}
.desc .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.desc .alignright img {
  max-width: 100%;
  height: auto;
}

/** LOOP ============================================*/
.post_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  height: 100%;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 68%;
  width: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.post_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%;
  transition: all 0.3s ease 0s;
}
.post_inner .info {
  padding-top: 16px;
  position: relative;
}
.post_inner .info .cate {
  font-size: 14px;
  font-weight: 600;
  color: var(--second-Color);
  margin-bottom: 6px;
}
.post_inner .info h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4px;
  position: relative;
}
.post_inner .info h3 a {
  color: var(--primary-Color);
}
.post_inner .info .date {
  font-size: 14px;
  color: #888;
  font-weight: 400;
  padding-bottom: 10px;
  position: relative;
}
.post_inner .info .date::after {
  content: "";
  height: 3px;
  width: 44px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #888;
}
/** Paginate Nav */
.paginate-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.paginate-nav ul > li {
  display: inline-block;
  position: relative;
  padding: 0 4px;
}
.paginate-nav ul > li span, .paginate-nav ul > li a {
  height: 40px;
  width: 40px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  font-weight: 600;
}
.paginate-nav ul > li span i, .paginate-nav ul > li a i {
  position: relative;
  width: 16px;
  height: 9px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.paginate-nav ul > li a.prev i {
  background-image: url("../images/svg/ick-prev.svg");
}
.paginate-nav ul > li a.next i {
  background-image: url("../images/svg/ick-next.svg");
}
.paginate-nav ul > li span.current {
  background: var(--primary-Color);
  color: #fff;
}
.paginate-nav ul li.prv-link a i, .paginate-nav ul li.prv-link span i {
  background-image: url("../images/svg/ick-prev.svg");
}
.paginate-nav ul li.nxt-link a i, .paginate-nav ul li.nxt-link span i {
  background-image: url("../images/svg/ick-next.svg");
}
.paginate-nav ul li.active a, .paginate-nav ul li.active span {
  background: var(--primary-Color);
  color: #fff;
}

/** BUTTON */
.gvx-support-nav {
  position: fixed;
  right: 13px;
  background: #fff;
  border-radius: 5px;
  width: auto;
  z-index: 150;
  bottom: 80px;
  padding: 10px 0;
  border: 1px solid #f2f2f2;
}
@media (max-width: 767px) {
  .gvx-support-nav {
    bottom: -1px;
    left: 0;
    right: 0;
    border: 0;
    border-radius: 0;
    padding: 10px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}
.gvx-support-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gvx-support-nav ul > li > a {
  border: none;
  padding: 3px;
  display: block;
  border-radius: 5px;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  color: #515151;
  font-weight: 700;
  max-width: 72.19px;
  max-height: 54px;
  text-decoration: none;
}
.gvx-support-nav ul > li > a i {
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.gvx-support-nav ul > li > a i.ic-map {
  background-image: url("../images/icons-map.png");
}
.gvx-support-nav ul > li > a i.ic-zalo {
  background-image: url("../images/icons-zalo.png");
}
.gvx-support-nav ul > li > a i.ic-chat {
  background-image: url("../images/icons-mess.png");
}
.gvx-support-nav ul > li > a i.ic-phone {
  background-image: url("../images/icons-phone.png");
}
@media (max-width: 767px) {
  .gvx-support-nav ul {
    display: flex;
    justify-content: space-between;
  }
  .gvx-support-nav ul > li {
    padding: 0 5px;
    display: inline-block;
  }
}

/** POPUP */
.gvx-form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 90%;
  padding: 8px;
  max-width: 500px;
  background: var(--second-Color);
  transform: translate(-50%, -50%);
}
.gvx-form-popup .inner {
  border: 1px dashed #fff;
  padding: 30px;
  position: relative;
}
.gvx-form-popup .inner > button {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 4;
  outline: none;
  background: #fff;
}
.gvx-form-popup .inner > button i {
  height: 18px;
  width: 18px;
  background-image: url("../images/svg/icn-close.svg");
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0);
}
.gvx-form-popup .inner .name {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}
.gvx-form-popup .inner .desc {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.gvx-form-popup .inner .form input[type=text],
.gvx-form-popup .inner .form input[type=tel],
.gvx-form-popup .inner .form input[type=date],
.gvx-form-popup .inner .form input[type=email],
.gvx-form-popup .inner .form input[type=number],
.gvx-form-popup .inner .form select, .gvx-form-popup .inner .form textarea {
  border: 1px solid #fff;
  border-radius: 0;
  padding: 10px 16px;
  margin-bottom: 8px;
  margin-top: 8px;
  color: #000;
  outline: none;
  width: 100%;
  font-size: 15px;
}
.gvx-form-popup .inner .form input.wpcf7-submit {
  border: 1px solid var(--primary-Color);
  border-radius: 0;
  margin: 0 auto;
  padding: 10px 16px;
  margin-bottom: 8px;
  margin-top: 8px;
  color: #fff;
  outline: none;
  font-weight: 600;
  font-size: 15px;
  width: auto;
  display: block;
  background: var(--primary-Color);
}
.gvx-form-popup .inner .form .wpcf7-spiner {
  position: absolute;
}

/** CONTACT */
#button-contact-vr {
  position: fixed;
  bottom: 0;
  z-index: 99999;
}

/*phone*/
#button-contact-vr .button-contact {
  position: relative;
  margin-top: -5px;
}
#button-contact-vr .button-contact .phone-vr {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
#button-contact-vr .phone-vr-circle-fill {
  width: 65px;
  height: 65px;
  top: 12px;
  left: 12px;
  position: absolute;
  box-shadow: 0 0 0 0 #c31d1d;
  background-color: rgba(230, 8, 8, 0.7);
  border-radius: 50%;
  border: 2px solid transparent;
  animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  -webkit-animuiion: zoom 1.3s infinite;
  animation: zoom 1.3s infinite;
}
#button-contact-vr .phone-vr-img-circle {
  background-color: #e60808;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 25px;
  left: 25px;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}
#button-contact-vr .phone-vr-img-circle a {
  display: block;
  line-height: 37px;
}
#button-contact-vr .phone-vr-img-circle a img {
  max-height: 25px;
  max-width: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
#button-contact-vr .phone-bar a {
  position: absolute;
  margin-top: -65px;
  left: 30px;
  z-index: -1;
  color: #fff;
  font-size: 16px;
  padding: 7px 15px 7px 50px;
  border-radius: 100px;
  white-space: nowrap;
}
#button-contact-vr .phone-bar a:hover {
  opacity: 0.8;
  color: #fff;
}
@media (max-width: 736px) {
  #button-contact-vr .phone-bar {
    display: none;
  }
}
#button-contact-vr #zalo-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2196F3;
  background-color: rgba(33, 150, 243, 0.7);
}
#button-contact-vr #zalo-vr .phone-vr-img-circle {
  background-color: #2196F3;
}
@keyframes phone-vr-circle-fill {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}/*# sourceMappingURL=style.css.map */