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

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
/** HEADER ============================================*/
/** Topbar */
.gv_topbar_block {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 0px 0;
}
@media (max-width: 1023px) {
  .gv_topbar_block {
    display: none;
  }
}
.gv_topbar_block .container > .row {
  align-items: center;
}
.gv_topbar_block .phone {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.gv_topbar_block .phone > li {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 0;
}
.gv_topbar_block .phone > li > span {
  display: flex;
  justify-content: center;
  height: 12px;
  align-items: center;
}
.gv_topbar_block .phone > li > span svg {
  height: 12px;
  width: 12px;
  fill: #fff;
}
.gv_topbar_block .place {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
.gv_topbar_block .place > li {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 0;
}
.gv_topbar_block .place > li > span {
  display: flex;
  justify-content: center;
  height: 12px;
  align-items: center;
}
.gv_topbar_block .place > li > span svg {
  height: 12px;
  width: 12px;
  fill: #fff;
}

/** Header Main */
.gv_header_block {
  position: relative;
  background: #fff;
  color: #000;
  padding: 12px 0;
  z-index: 999;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
@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 {
  flex: 0 0 35%;
  max-width: 35%;
}
.gv_header_block .container .flex .flx-right {
  flex: 0 0 65%;
  max-width: 65%;
}
.gv_header_block .logo {
  display: block;
}
.gv_header_block .logo img {
  height: 70px;
  width: auto;
  margin-right: 24px;
}
.gv_header_block .company h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-Color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.15;
  letter-spacing: 0px;
}
.gv_header_block .company p {
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  color: #888;
}

/** Header Nav */
.gv_header_navi {
  position: relative;
  background: var(--primary-Color);
  color: #fff;
}
@media (max-width: 1023px) {
  .gv_header_navi {
    display: none;
  }
}
.gv_header_navi .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gv_header_navi .main-nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.gv_header_navi .main-nav .menu > li {
  display: inline-block;
  position: relative;
}
.gv_header_navi .main-nav .menu > li > a {
  display: block;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease 0s;
  background: transparent;
}
.gv_header_navi .main-nav .menu > li .sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 290px;
  z-index: 11;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.gv_header_navi .main-nav .menu > li .sub-menu > li {
  display: block;
  position: relative;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li > a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  color: #000;
  border-bottom: 1px solid #ddd;
  padding-left: 35px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li > a::before {
  content: "";
  height: 5px;
  width: 5px;
  background: #888;
  position: absolute;
  left: 20px;
  top: 19px;
  transition: all 0.3s ease 0s;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 250px;
  z-index: 11;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul > li {
  display: block;
  position: relative;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul > li > a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #000;
  border-bottom: 1px solid #ddd;
  padding-left: 35px;
  position: relative;
  transition: all 0.3s ease 0s;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul > li > a::before {
  content: "";
  height: 5px;
  width: 5px;
  background: #888;
  position: absolute;
  left: 20px;
  top: 19px;
  transition: all 0.3s ease 0s;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul > li:hover > a {
  color: var(--primary-Color);
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul > li:hover > a::before {
  background: var(--primary-Color);
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul > li:hover > ul {
  display: block;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li ul > li:last-child > a {
  margin-bottom: 0;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li:hover > a {
  color: var(--primary-Color);
}
.gv_header_navi .main-nav .menu > li .sub-menu > li:hover > a::before {
  background: var(--primary-Color);
}
.gv_header_navi .main-nav .menu > li .sub-menu > li:hover > ul {
  display: block;
}
.gv_header_navi .main-nav .menu > li .sub-menu > li:last-child > a {
  margin-bottom: 0;
}
.gv_header_navi .main-nav .menu > li:hover > a {
  color: #fff;
  background: #101010;
}
.gv_header_navi .main-nav .menu > li:hover > ul {
  display: block;
}
.gv_header_navi .main-nav .menu > li:last-child > a {
  margin-right: 0;
}
.gv_header_navi .main-nav .menu > li.active > a {
  color: #fff;
  background: #101010;
}
.gv_header_navi .main-nav .hotline {
  margin-left: 20px;
  display: block;
}
.gv_header_navi .main-nav .hotline > a {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  line-height: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #d71717;
  border-radius: 30px;
}
.gv_header_navi .main-nav .hotline > a i {
  background-image: url("../images/svg/icn-phone.svg");
  height: 13px;
  width: 13px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
  filter: brightness(0) invert(1);
  margin-right: 6px;
}

/** Header Mobile */
.gv_mobile_block {
  position: relative;
  background: #FFF;
  color: #000;
  padding: 12px 0;
  display: none;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}
@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;
  text-align: center;
}
.gv_mobile_block .logo img {
  height: 48px;
  width: auto;
}
.gv_mobile_block button {
  height: 36px;
  width: 36px;
  background: transparent;
  border: 2px 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: 18px;
  width: 18px;
  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: 99;
  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: 8px;
  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: #fff;
}
.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;
  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: #f3f3f3;
}
@media (max-width: 991px) {
  .gv_footer_block {
    padding: 36px 0;
  }
}
.gv_footer_block .container > .row > [class*=col-] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.gv_footer_block .head_footer {
  margin-bottom: 20px;
}
.gv_footer_block .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .menu > li {
  display: block;
  margin-bottom: 12px;
}
.gv_footer_block .menu > li:last-child {
  margin-bottom: 0;
}
.gv_footer_block .menu > li a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}
.gv_footer_block .menu > li a:hover {
  color: var(--primary-Color);
  text-decoration: underline;
}
.gv_footer_block .desc {
  font-size: 14px;
  line-height: 1.85;
}

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

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

/** BREADCRUMB ============================================*/
.gv_breadcrumb_block {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  background: #f2f2f2;
}
.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);
}

/** 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: 30px;
}
.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 .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;
}

.gvx-hotline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.gvx-hotline-wrap > a {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(#d71717, #851414);
  padding: 8px;
  border-radius: 50px;
}
.gvx-hotline-wrap > a .bx-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.gvx-hotline-wrap > a .bx-icon i {
  border-radius: 100%;
  background: #b80a0a;
  height: 50px;
  width: 50px;
  background-image: url("../images/call-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.gvx-hotline-wrap > a .bx-info {
  padding: 0px 16px 0px 26px;
  margin-left: -10px;
  border-radius: 0 20px 20px 0;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  line-height: 1.26;
}
.gvx-hotline-wrap > a .bx-info span {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.15;
  display: block;
}

/** LOOP ============================================*/
.service_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}
.service_inner .image {
  position: relative;
}
.service_inner .image > a {
  display: block;
  padding-bottom: 60%;
  width: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service_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;
}
.service_inner .info {
  position: relative;
  padding: 16px;
}
.service_inner .info h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}
.service_inner .info h3 a {
  color: var(--primary-Color);
}
.service_inner .info h3 a:hover {
  color: #999;
}
.service_inner .info .call {
  text-align: center;
  margin-bottom: 6px;
}
.service_inner .info .call a {
  font-size: 15px;
  font-weight: 600;
  color: red;
  text-transform: uppercase;
}
.service_inner .info .desc {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 86px;
  color: #333;
  text-transform: lowercase;
  line-height: 1.5;
}
.service_inner:hover .image a img {
  transform: scale(1.09);
}

.post_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  border-radius: 0px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.105);
}
.post_inner .image {
  position: relative;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 60%;
  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 {
  position: relative;
  padding: 16px 10px;
}
.post_inner .info h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
  position: relative;
}
.post_inner .info h3 a {
  color: var(--primary-Color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post_inner .info h3 a:hover {
  text-decoration: underline;
}
.post_inner .info .desc {
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 63px;
  color: #333;
  line-height: 1.5;
}
.post_inner:hover .image a img {
  transform: scale(1.09);
}

/** 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 NOW
 */
.hotline-phone-ring-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 33;
}
.hotline-phone-ring-wrap .hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-circle {
  width: 100px;
  height: 100px;
  top: 0px;
  left: 0px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #16b3f0;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  opacity: 0.5;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-circle-fill {
  width: 60px;
  height: 60px;
  top: 20px;
  left: 20px;
  position: absolute;
  background-color: rgb(22, 179, 240);
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle {
  background-color: #16b3f0;
  width: 40px;
  height: 40px;
  top: 30px;
  left: 30px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle .pps-btn-img {
  display: flex;
}
.hotline-phone-ring-wrap .hotline-phone-ring .hotline-phone-ring-img-circle .pps-btn-img img {
  width: 20px;
  height: 20px;
}

#vsr-zalo {
  bottom: 80px;
}
#vsr-zalo .hotline-phone-ring .hotline-phone-ring-circle {
  border: 2px solid #16b3f0;
}
#vsr-zalo .hotline-phone-ring .hotline-phone-ring-circle-fill {
  background-color: rgb(22, 179, 240);
}
#vsr-zalo .hotline-phone-ring .hotline-phone-ring-img-circle {
  background-color: #16b3f0;
}

#vsr-phone .hotline-phone-ring .hotline-phone-ring-circle {
  border: 2px solid #e80606;
}
#vsr-phone .hotline-phone-ring .hotline-phone-ring-circle-fill {
  background-color: #e80606;
}
#vsr-phone .hotline-phone-ring .hotline-phone-ring-img-circle {
  background-color: #e80606;
}

@keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@keyframes phonering-alo-circle-img-anim {
  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 */