.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: relative;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 0px 0;
  transition: all 0.3s ease 0s;
  z-index: 999;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.23);
}
@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 {
  margin: 6px 0;
  display: inline-block;
  position: relative;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  margin-right: 50px;
}
.gv_header_block .logo::after {
  content: "";
  height: 8px;
  width: 8px;
  background: var(--primary-Color);
  position: absolute;
  right: -10px;
  bottom: 3px;
  display: block;
  border-radius: 100%;
}
.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 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  font-family: var(--second-Font);
  transition: all 0.3s ease 0s;
  background: transparent;
}
.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(--primary-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 18px;
  border-radius: 8px;
  border: 1px solid var(--primary-Color);
  line-height: 20px;
  font-size: 15px;
  font-weight: 400;
  background: var(--primary-Color);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.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 .hotline > a:hover {
  background: var(--primary-Color);
  border-color: var(--primary-Color);
  color: #fff;
}
.gv_header_block .hotline > a:hover svg path {
  fill: #fff;
  stroke: #fff;
}

.gv_header_block.fixed {
  position: fixed;
  background: #fff;
}
.gv_header_block.fixed .logo {
  font-size: 28px;
}
.gv_header_block.fixed .menu > li > a {
  padding: 26px 20px;
}
.gv_header_block.fixed .menu > li.menu-item-has-children > a {
  padding-right: 42px;
}
.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: relative;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 12px 0;
  transition: all 0.3s ease 0s;
  z-index: 999;
  border-bottom: 1px solid #f0f0f0;
  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 {
  margin: 6px 0;
  display: inline-block;
  position: relative;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  margin-right: 50px;
}
.gv_mobile_block .logo::after {
  content: "";
  height: 8px;
  width: 8px;
  background: var(--primary-Color);
  position: absolute;
  right: -10px;
  bottom: 3px;
  display: block;
  border-radius: 100%;
}
.gv_mobile_block button {
  height: 44px;
  width: 40px;
  background: transparent;
  border: 1px solid var(--primary-Color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.gv_mobile_block button i {
  height: 22px;
  width: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}

/** 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(--second-Color);
  color: #fff;
  overflow: hidden;
}
.gv_footer_block .container .flex {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.gv_footer_block .container .flex .col-widget {
  flex: 0 0 22%;
  max-width: 22%;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 1023px) {
  .gv_footer_block .container .flex .col-widget {
    flex: 0 0 50%;
    max-width: 50%;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .gv_footer_block .container .flex .col-widget {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}
.gv_footer_block .container .flex .col-form {
  flex: 0 0 34%;
  max-width: 34%;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 1023px) {
  .gv_footer_block .container .flex .col-form {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .gv_footer_block .container .flex .col-form {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_footer_block .container .wrap {
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .gv_footer_block .container .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.gv_footer_block .container .wrap .fx-left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .gv_footer_block .container .wrap .fx-left {
    flex-direction: column;
    align-items: flex-start;
  }
}
.gv_footer_block .contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .contact > li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.gv_footer_block .contact > li:last-child {
  margin-bottom: 0;
}
.gv_footer_block .contact > li .fx-icon {
  min-width: 30px;
  max-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 3px;
  background: var(--primary-Color);
}
.gv_footer_block .contact > li .fx-icon i {
  height: 18px;
  width: 18px;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}
.gv_footer_block .contact > li .fx-name {
  font-size: 14px;
  font-weight: 400;
  flex: 1;
  padding-left: 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(--third-Color);
}
.gv_footer_block .subcribe .desc {
  margin-bottom: 16px;
}
.gv_footer_block .subcribe .wpcf7-form .subcribe-wrap {
  position: relative;
  padding-right: 100px;
}
.gv_footer_block .subcribe .wpcf7-form .subcribe-wrap p {
  margin-bottom: 0;
}
.gv_footer_block .subcribe .wpcf7-form .subcribe-wrap input[type=email],
.gv_footer_block .subcribe .wpcf7-form .subcribe-wrap input[type=tel],
.gv_footer_block .subcribe .wpcf7-form .subcribe-wrap input[type=text] {
  width: 100%;
}
.gv_footer_block .subcribe .wpcf7-form .subcribe-wrap input.wpcf7-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 112px;
  text-align: center;
  padding: 12px 10px;
  z-index: 2;
}
.gv_footer_block .place {
  padding-top: 32px;
  margin-bottom: 24px;
}
.gv_footer_block .place p {
  margin-bottom: 6px;
}
.gv_footer_block .place p span.adx-icon {
  margin-right: 6px;
}
.gv_footer_block .logo {
  display: block;
  padding-right: 36px;
}
@media (max-width: 767px) {
  .gv_footer_block .logo {
    padding-right: 0;
    padding-bottom: 16px;
  }
}
.gv_footer_block .logo a {
  display: inline-block;
  position: relative;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.gv_footer_block .logo a::after {
  content: "";
  height: 8px;
  width: 8px;
  background: var(--primary-Color);
  position: absolute;
  right: -10px;
  bottom: 3px;
  display: block;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .gv_footer_block .other {
    padding-bottom: 16px;
  }
}
.gv_footer_block .other ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin-bottom: 0;
}
.gv_footer_block .other ul > li a {
  color: #fff;
}
.gv_footer_block .other ul > li a:hover {
  color: var(--primary-Color);
}
.gv_footer_block .social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 767px) {
  .gv_footer_block .social {
    justify-content: flex-start;
  }
}
.gv_footer_block .social a {
  height: 34px;
  width: 34px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-Color);
}
.gv_footer_block .social a svg path {
  fill: #fff;
}

/** HEADING ============================================*/
.head_section {
  position: relative;
  font-family: var(--second-Font);
}
.head_section .title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  color: var(--second-Color);
}
@media (max-width: 767px) {
  .head_section .title {
    font-size: 28px;
  }
}
.head_section img {
  margin-top: 10px;
  max-width: 100%;
  height: auto;
}

.head_blog {
  position: relative;
  font-family: var(--primary-Font);
}
.head_blog .title {
  margin: 0;
  font-size: 44px;
  font-weight: 500;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .head_blog .title {
    font-size: 30px;
  }
}

.head_footer {
  position: relative;
  font-family: var(--second-Font);
}
.head_footer .title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.4px;
  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: var(--primary-Color);
  opacity: 0.74;
  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 ============================================*/
.project_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  height: 100%;
  overflow: hidden;
}
.project_inner .box {
  display: block;
  position: relative;
}
.project_inner .box > a {
  display: block;
  padding-bottom: 130%;
  width: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.project_inner .box > 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;
}
.project_inner .name {
  position: absolute;
  padding: 20px 20px 14px;
  bottom: 6px;
  left: 6px;
  right: 6px;
  z-index: 4;
}
.project_inner .name::before {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.9) 90%);
  z-index: -1;
}
.project_inner .name .cate {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.project_inner .name .cate > a {
  display: block;
  padding: 3px 10px;
  background: var(--second-Color);
  border-radius: 24px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}
.project_inner .name h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0px;
  position: relative;
}
.project_inner .name h3 a {
  color: #000;
}
.project_inner .name h3 a:hover {
  color: var(--primary-Color);
}

.post_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  height: 100%;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 60%;
  width: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.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 h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4px;
  position: relative;
}
.post_inner .info h3 a {
  color: var(--second-Color);
}
.post_inner .info .date {
  font-size: 12px;
  color: #888;
  font-weight: 300;
  padding-bottom: 10px;
  position: relative;
}
.post_inner .info .desc {
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 46px;
}

/** 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;
}

/** Call */
.gv-button-call {
  position: fixed;
  bottom: 20px;
  left: 10px;
  z-index: 99999;
}
.gv-button-call .button-contact {
  position: relative;
}
.gv-button-call .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;
}
.gv-button-call .button-contact .phone-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;
}
.gv-button-call .button-contact .phone-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;
  align-items: center;
  justify-content: center;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}
.gv-button-call .button-contact .phone-vr .phone-vr-img-circle a {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
}
.gv-button-call .button-contact .phone-vr .phone-vr-img-circle a img {
  height: 27px;
  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%);
}
.gv-button-call #phone-vr {
  margin-top: 8px;
}
.gv-button-call #zalo-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #0b85e3;
  background-color: rgba(11, 133, 227, 0.7);
}
.gv-button-call #zalo-vr .phone-vr-img-circle {
  background-color: #0b85e3;
}
@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);
  }
}/*# sourceMappingURL=style.css.map */