@media (min-width: 1400px) {
  .container-fluid {
    width: 100%;
    max-width: 1440px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
/** HEADER ============================================*/
/** Topbar */
.gv_topbar_block {
  position: relative;
  overflow: hidden;
  background-color: var(--second-Color);
  background-image: url("../images/bw-blue.jpg");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  color: #fff;
  padding: 8px 0;
}
.gv_topbar_block .container > .row {
  align-items: center;
}
@media (max-width: 991px) {
  .gv_topbar_block .container .col-left {
    display: none;
  }
}
.gv_topbar_block .container .col-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 991px) {
  .gv_topbar_block .container .col-right {
    justify-content: center;
  }
}
.gv_topbar_block .slogan {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.gv_topbar_block .tx-email, .gv_topbar_block .tx-phone {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 5px;
}
.gv_topbar_block .tx-email svg, .gv_topbar_block .tx-phone svg {
  fill: #fff;
}

/** Header Main */
.gv_header_block {
  position: relative;
  background: #fff;
  color: #000;
  padding: 12px 0;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 1023px) {
  .gv_header_block {
    display: none;
  }
}
.gv_header_block .container .flex {
  display: flex;
  align-items: center;
}
.gv_header_block .container .flex .flx-left {
  max-width: 250px;
  min-width: 250px;
}
.gv_header_block .container .flex .flx-center {
  flex: 1;
  max-width: 100%;
}
.gv_header_block .container .flex .flx-right {
  max-width: 250px;
  min-width: 250px;
}
.gv_header_block .logo {
  display: inline-block;
}
.gv_header_block .logo img {
  height: 66px;
  width: auto;
}
.gv_header_block .image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.gv_header_block .extra {
  display: flex;
  justify-content: flex-end;
}
.gv_header_block .extra .phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gv_header_block .extra .phone .icon {
  height: 40px;
  width: 40px;
  background: red;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.gv_header_block .extra .phone .icon svg {
  height: 24px;
  width: 24px;
  fill: #fff;
}
.gv_header_block .extra .phone .info {
  font-size: 11px;
  text-align: center;
}
.gv_header_block .extra .phone .info b {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

/** Navigator */
.gv_navigator_block {
  background: var(--second-Color);
  display: block;
  padding: 0px 0;
  position: relative;
}
@media (max-width: 1023px) {
  .gv_navigator_block {
    display: none;
  }
}
.gv_navigator_block .container .d-flex {
  align-items: center;
}
.gv_navigator_block .nav-primary .menu {
  position: static;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_navigator_block .nav-primary .menu > li {
  display: inline-block;
  position: relative;
  padding: 4px 0;
}
.gv_navigator_block .nav-primary .menu > li > a {
  font-size: 15px;
  font-weight: 400;
  box-shadow: inset 0 0 0 0 var(--primary-Color);
  transition: color 300ms ease-in-out, box-shadow 300ms ease-in-out;
  border-radius: 4px;
  display: block;
  position: relative;
  text-transform: uppercase;
  padding: 11px 16px 9px;
  line-height: 20px;
  color: #fff;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu {
  display: none;
  background: #fff;
  border-radius: 4px;
  padding: 12px 0px;
  position: absolute;
  list-style: none;
  top: 100%;
  left: 0;
  margin: 0;
  z-index: 10;
  box-shadow: 0px 0px 12px -2px rgba(0, 0, 0, 0.1);
  width: 260px;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li {
  display: block;
  position: relative;
  padding: 0 0px;
  margin-bottom: 5px;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > a {
  display: block;
  background: transparent;
  color: #000;
  padding: 10px 18px;
  line-height: 20px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease 0s;
  border-bottom: 1px dotted #dfdfdf;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > a:hover {
  color: var(--primary-Color);
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > ul {
  display: none;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0px;
  position: absolute;
  list-style: none;
  margin: 0;
  z-index: 10;
  left: 100%;
  top: 0;
  box-shadow: 0px 0px 12px -2px rgba(0, 0, 0, 0.1);
  width: 250px;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > ul > li {
  display: block;
  position: relative;
  padding: 0 10px;
  margin-bottom: 5px;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > ul > li > a {
  display: block;
  background: transparent;
  color: #000;
  padding: 10px 16px;
  line-height: 20px;
  font-size: 15px;
  border-radius: 24px;
  font-weight: 400;
  transition: all 0.3s ease 0s;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > ul > li > a:hover {
  color: var(--primary-Color);
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > ul > li:last-child {
  margin-bottom: 0;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li > ul > li:hover > ul {
  display: block;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li:last-child {
  margin-bottom: 0;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li:last-child > a {
  border-bottom: 0;
}
.gv_navigator_block .nav-primary .menu > li > ul.sub-menu > li:hover > ul {
  display: block;
}
.gv_navigator_block .nav-primary .menu > li:hover > a {
  transition: 0.2s;
  box-shadow: inset 400px 0 0 0 var(--primary-Color);
  color: #fff;
}
.gv_navigator_block .nav-primary .menu > li:hover > ul {
  display: block;
}
.gv_navigator_block .nav-primary .menu > li.menu-item-has-children > a {
  padding-right: 26px;
}
.gv_navigator_block .nav-primary .menu > li.menu-item-has-children > i.arrow {
  font-size: 16px;
  position: absolute;
  right: 8px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.gv_navigator_block .nav-primary .menu > li.menu-item-has-children:hover > i.arrow {
  color: #fff;
}
.gv_navigator_block .nav-primary .menu > li.active > a,
.gv_navigator_block .nav-primary .menu > li.current-menu-item > a,
.gv_navigator_block .nav-primary .menu > li.current_page_item > a,
.gv_navigator_block .nav-primary .menu > li.current-menu-ancestor > a,
.gv_navigator_block .nav-primary .menu > li.current_page_parent > a,
.gv_navigator_block .nav-primary .menu > li.current_page_ancestor > a {
  background-color: #eee;
  transition: 0.2s;
  box-shadow: inset 200px 0 0 0 var(--primary-Color);
  color: #fff;
  font-weight: 500;
}
.gv_navigator_block .nav-extra {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_navigator_block .nav-extra .search {
  position: relative;
  margin-left: 40px;
}
.gv_navigator_block .nav-extra .search > button {
  border: 0;
  outline: none;
  padding: 0;
  height: 40px;
  width: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gv_navigator_block .nav-extra .search > button i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block !important;
  filter: brightness(0) invert(1);
}
.gv_navigator_block .nav-extra .search form {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -2;
  background: #fff;
  padding: 2px;
  display: flex;
  align-items: center;
  width: 240px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1199px) {
  .gv_navigator_block .nav-extra .search form {
    width: 200px;
  }
}
@media (max-width: 1023px) {
  .gv_navigator_block .nav-extra .search form {
    width: 150px;
  }
}
.gv_navigator_block .nav-extra .search form input[type=text] {
  background: #fff;
  border: 0;
  outline: none;
  border-radius: 30px;
  line-height: 20px;
  padding: 9px 16px;
  width: 100%;
  color: #000;
  flex: 1;
  width: 100%;
  font-size: 15px;
}
.gv_navigator_block .nav-extra .search form input[type=text]::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.gv_navigator_block .nav-extra .search form input[type=text]::placeholder {
  opacity: 1;
  color: #000;
}
.gv_navigator_block .nav-extra .search form input[type=text]::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.gv_navigator_block .nav-extra .search form input[type=text]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.gv_navigator_block .nav-extra .search form button {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-Color);
  white-space: nowrap;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
}
.gv_navigator_block .nav-extra .search form button i {
  height: 16px;
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block !important;
  filter: brightness(0) invert(1);
}
.gv_navigator_block .nav-extra .search.show form {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.gv_navigator_block .nav-extra .language {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 16px;
  gap: 6px;
  margin-bottom: 2px;
}
.gv_navigator_block .nav-extra .language > li > a {
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}
.gv_navigator_block .nav-extra .language > li > a img {
  height: 24px;
  width: 24px;
}

/** Header Mobile */
.gv_mobile_block {
  position: relative;
  background: #fff;
  color: #000;
  padding: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.23);
  z-index: 99;
  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: 0 0 auto;
  max-width: 100%;
}
.gv_mobile_block .container .flex .flx-center {
  max-width: 200px;
  min-width: 200px;
}
.gv_mobile_block .container .flex .flx-right {
  flex: 0 0 auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_mobile_block .logo {
  display: block;
  text-align: center;
}
.gv_mobile_block .logo img {
  height: 46px;
  width: auto;
  display: inline-block;
}
.gv_mobile_block button {
  height: 36px;
  width: 36px;
  background: transparent;
  border: 2px solid #000;
  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;
}
.gv_mobile_block button.btm-open {
  border-color: var(--primary-Color);
}
.gv_mobile_block .language {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 16px;
  gap: 6px;
  margin-bottom: 2px;
}
.gv_mobile_block .language > li > a {
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
}
.gv_mobile_block .language > li > a img {
  height: 24px;
  width: 24px;
}

/** 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);
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.gv_menu_block .head-nav {
  background: #f8f8f8;
  padding: 15px 15px;
  position: relative;
  display: block;
}
.gv_menu_block .head-nav .name {
  line-height: 1;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-Color);
}
.gv_menu_block .head-nav .language {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.gv_menu_block .head-nav .language > li {
  margin-right: 6px;
  display: inline-block;
}
.gv_menu_block .head-nav .language > li > a {
  display: flex;
  align-items: center;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 16px;
  font-size: 13px;
  font-weight: 400;
  background: #ccc;
  white-space: nowrap;
}
.gv_menu_block .head-nav .language > li > a img {
  height: 14px;
  margin-right: 6px;
}
.gv_menu_block .head-nav .language > li.active > a {
  background: var(--primary-Color);
  color: #fff;
}
.gv_menu_block .head-nav > button {
  position: absolute;
  right: 16px;
  top: 16px;
  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: 14px;
  border-bottom: 1px solid #eee;
  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;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  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: #fff;
}
.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 0px;
  background-color: var(--primary-Color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.gv_footer_block::before {
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url("../images/bw-blue.jpg");
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
}
@media (max-width: 767px) {
  .gv_footer_block {
    padding: 36px 0;
  }
}
.gv_footer_block .container {
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .gv_footer_block .container > .row > [class*=col-] {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.gv_footer_block .head_footer {
  padding-bottom: 30px;
}
.gv_footer_block .head_footer .title {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.gv_footer_block .contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .contact > li {
  display: flex;
  padding-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  letter-spacing: 0.4px;
}
.gv_footer_block .contact > li:last-child {
  padding-bottom: 0;
}
.gv_footer_block .contact > li .icon {
  min-width: 24px;
  max-width: 24px;
}
.gv_footer_block .contact > li .icon img {
  filter: brightness(0) invert(1);
  width: 100%;
  height: auto;
}
.gv_footer_block .contact > li .info {
  position: relative;
  display: block;
  padding-left: 12px;
  color: #fff;
}
.gv_footer_block .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .menu > li {
  margin-bottom: 16px;
  display: block;
}
.gv_footer_block .menu > li a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.4px;
  position: relative;
  display: block;
}
.gv_footer_block .menu > li a:hover {
  text-decoration: underline;
}
.gv_footer_block .menu > li:last-child {
  margin-bottom: 0;
}
.gv_footer_block .social {
  display: flex;
  align-items: center;
  position: relative;
}
.gv_footer_block .social a {
  height: 48px;
  width: 48px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  margin-right: 10px;
  background: #fff;
  transition: all 0.3s ease 0s;
}
.gv_footer_block .social a::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 4px solid transparent;
  border-left-color: var(--primary-Color);
  border-bottom-color: var(--primary-Color);
  z-index: 1;
  opacity: 0;
  border-radius: 100%;
  visibility: hidden;
  transition: all 0.3s;
}
.gv_footer_block .social a img {
  z-index: 4;
  height: 20px;
  width: 20px;
  display: block;
  filter: brightness(0.4);
}
.gv_footer_block .social a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) rotate(135deg);
}

/** HEADING ============================================*/
.head_section {
  position: relative;
  font-family: var(--primary-Font);
}
.head_section .title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  text-transform: uppercase;
  color: var(--primary-Color);
}
@media (max-width: 991px) {
  .head_section .title {
    font-size: 25px;
  }
}
.head_section .sub {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.head_block {
  position: relative;
  font-family: var(--primary-Font);
}
.head_block .title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
}
.head_block .title span {
  position: relative;
  z-index: 3;
  padding: 12px 25px 12px 20px;
  background-color: var(--primary-Color);
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  line-height: 20px;
  background-image: url(../images/bw-blue.jpg);
  background-position: 0px -178px;
  background-size: cover;
}
.head_block .title span::after {
  content: "";
  height: 44px;
  width: 24px;
  background: var(--primary-Color);
  transform: skewX(20deg);
  z-index: -1;
  right: -10px;
  position: absolute;
  top: 0;
}

.head_blog {
  position: relative;
  font-family: var(--primary-Font);
}
.head_blog .title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 991px) {
  .head_blog .title {
    font-size: 26px;
  }
}

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

/** BANNER =============================================*/
.gv_banner_blog {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 354px;
  padding: 40px 0;
}
.gv_banner_blog::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}
.gv_banner_blog .container {
  height: 100%;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gv_banner_blog .box {
  display: block;
}
.gv_banner_blog .box .title {
  text-align: center;
}
.gv_banner_blog .box .breadcrumb-nav {
  margin-bottom: 0;
  padding-top: 10px;
  text-align: center;
}
.gv_banner_blog .box .breadcrumb-nav p {
  margin-bottom: 0;
}
.gv_banner_blog .box .breadcrumb-nav span,
.gv_banner_blog .box .breadcrumb-nav a {
  font-family: var(--primary-Font);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: normal;
}
.gv_banner_blog .box .breadcrumb-nav a {
  color: #fff;
}
.gv_banner_blog .box .breadcrumb-nav a:hover {
  color: var(--primary-Color);
}

/** BREADCRUMB =========================================*/
.gv_breadcrumb_block {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.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: "Plus Jakarta Sans", sans-serif;
  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%;
  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 iframe {
  max-width: 100%;
}
.entry-content object {
  max-width: 100%;
}
.entry-content ol, .entry-content ul {
  padding-left: 22px;
}
.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;
}
.entry-content .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.29%;
  display: block;
  width: 100%;
}
.entry-content .wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.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 ============================================*/
.service_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  height: 100%;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}
.service_inner .image {
  position: relative;
}
.service_inner .image > a {
  display: block;
  padding-bottom: 50%;
  width: 100%;
  background-position: center;
  position: relative;
  height: auto;
  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.4s ease-in-out;
}
.service_inner .info {
  position: relative;
  padding: 16px;
}
.service_inner .info h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  padding-bottom: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
}
.service_inner .info h3::after {
  content: "";
  height: 3px;
  width: 40px;
  position: absolute;
  background: var(--primary-Color);
  left: 0;
  bottom: 0;
}
.service_inner .info h3 a {
  color: #333;
}
.service_inner .info h3 a:hover {
  color: var(--primary-Color);
}
.service_inner .info .desc {
  font-size: 15px;
  font-weight: 400;
}
.service_inner:hover .image a img {
  transform: scale(1.12);
}

.produce_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  height: 100%;
  background: #f5f5f5;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}
.produce_inner .image {
  position: relative;
}
.produce_inner .image > a {
  display: block;
  padding-bottom: 60%;
  width: 100%;
  background-position: center;
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: 5px;
}
.produce_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.4s ease-in-out;
}
.produce_inner .info {
  position: relative;
  padding: 16px 10px 0;
}
.produce_inner .info .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  padding-bottom: 8px;
  margin-bottom: 13px;
  text-transform: uppercase;
  position: relative;
}
.produce_inner .info .title::after {
  content: "";
  height: 1px;
  width: 60px;
  position: absolute;
  background: var(--primary-Color);
  left: 0;
  bottom: 0;
}
.produce_inner .info .title a {
  color: #333;
}
.produce_inner .info .title a:hover {
  color: var(--primary-Color);
}
.produce_inner .info .param {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.produce_inner .info .param > li {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}
.produce_inner .info .param > li:last-child {
  margin-bottom: 0;
}
.produce_inner .info .param > li svg {
  position: absolute;
  left: 0;
  top: 1px;
  height: 18px;
  width: 18px;
  fill: var(--primary-Color);
}
.produce_inner:hover .image a img {
  transform: scale(1.12);
}

.post_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  background: #fff;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.post_inner .image {
  position: relative;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 84%;
  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%;
}
.post_inner .info {
  position: relative;
  padding: 12px 14px 16px;
}
.post_inner .info h3 {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.45;
}
.post_inner .info h3 a {
  color: #000;
  transition: all 0.3s ease 0s;
}
.post_inner .info h3 a:hover {
  color: var(--primary-Color);
}
.post_inner .info .desc {
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
  transition: all 0.3s ease 0s;
}

.work_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 2px 0px rgba(215, 215, 215, 0.21);
}
.work_inner .image {
  position: relative;
}
.work_inner .image > a {
  display: block;
  padding-bottom: 120%;
  width: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
.work_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%;
}
.work_inner .image .name {
  position: absolute;
  padding: 0 16px 16px;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
}
.work_inner .image .name h3 {
  width: 90%;
  display: block;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 30px;
  padding: 6px 12px;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 8px;
}
.work_inner .image .name h3 a {
  color: #fff;
}
.work_inner .image .name .local {
  display: flex;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 30px;
  padding: 6px 12px;
  line-height: 20px;
  color: #fff;
}
.work_inner .image .name .local span.ls-icon svg {
  height: 16px;
  width: 16px;
  fill: var(--primary-Color);
}
.work_inner .image .name .local span.ls-text {
  font-size: 12px;
  flex: 1;
  max-width: 100%;
  padding-left: 6px;
}

.brand_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  border-radius: 12px;
  height: 100%;
  background: #fff;
  overflow: hidden;
}
.brand_inner .image {
  display: block;
  position: relative;
}
.brand_inner .image .img {
  display: block;
  padding-bottom: 70%;
  width: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.brand_inner .image .img 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%;
}
.brand_inner .image .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.brand_inner .image .logo img {
  width: 90%;
  max-width: 120px;
  height: auto;
}
.brand_inner .image .name {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.63);
  color: #fff;
  padding: 12px 12px;
  left: 0;
  width: 100%;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
}
.brand_inner .info {
  padding: 12px 12px;
  position: relative;
}
.brand_inner .info .cate {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 400;
}
.brand_inner .info .born {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 400;
}
.brand_inner .info .story {
  font-size: 15px;
  margin-bottom: 0px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  height: 142px;
  line-height: 1.6;
}
.brand_inner .more a {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  background: var(--primary-Color);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 400;
  justify-content: center;
}
.brand_inner .more a i {
  height: 16px;
  width: 16px;
  display: block;
  background-image: url("../images/svg/icw-next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 8px;
}

.relative_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.relative_inner .image {
  position: relative;
  border-bottom: 1px solid #eee;
}
.relative_inner .image .sale {
  position: absolute;
  background: var(--primary-Color);
  background-position: center;
  padding: 5px 10px 4px;
  line-height: 16px;
  font-size: 13px;
  z-index: 3;
  color: #FFF;
  top: 2px;
  left: 2px;
  border-radius: 6px 0 10px 0;
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.relative_inner .image .stock {
  position: absolute;
  top: 2px;
  right: 2px;
  display: inline-block;
  background: red;
  border-radius: 4px;
  padding: 2px 5px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 16px;
  font-size: 12px;
  color: #FFF;
  z-index: 1;
}
.relative_inner .image > a {
  display: block;
  padding-bottom: 100%;
  width: 100%;
  background-position: center;
  position: relative;
  height: auto;
  overflow: hidden;
}
.relative_inner .image > a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
}
.relative_inner .image > a > span {
  font-family: "Plus Jakarta Sans", sans-serif;
  position: absolute;
  width: 100%;
  display: block;
  text-align: center;
  background: rgba(215, 215, 215, 0.81);
  color: var(--primary-Color);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  /* text-transform: uppercase; */
  padding: 7px 15px;
  bottom: -50px;
  left: 0;
  z-index: 1;
  transition: all 0.4s ease 0s;
}
.relative_inner .image:hover > a > span {
  bottom: 0;
}
.relative_inner .info {
  position: relative;
  padding: 10px 8px 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.relative_inner .info .title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  padding-bottom: 10px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.relative_inner .info .title a {
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  transition: all cubic-bezier(0.95, 0.05, 0.795, 0.035);
}
.relative_inner .info .title a:hover {
  color: var(--primary-Color);
}
.relative_inner .info .price {
  display: block;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.relative_inner .info .price span {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-Color);
  display: inline-flex;
  align-items: center;
}
.relative_inner .info .price span u {
  font-size: 12px;
  margin-bottom: 3px;
  margin-left: 1px;
}
.relative_inner .info .price span.old {
  text-decoration: line-through;
  color: #888;
  font-weight: 400;
  font-size: 13px;
  margin-left: 10px;
}
.relative_inner .info .coupon {
  background: #f3f3f3;
  border-radius: 6px;
  padding: 6px 4px;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
  font-weight: 500;
  color: #333;
}

.blog_inner {
  position: relative;
  font-family: var(--primary-Font);
  margin: 0;
  padding: 0px;
  display: flex;
  align-items: center;
}
.blog_inner .image {
  min-width: 120px;
  max-width: 120px;
}
@media (max-width: 991px) {
  .blog_inner .image {
    max-width: 100px;
    min-width: 100px;
  }
}
@media (max-width: 575px) {
  .blog_inner .image {
    max-width: 80px;
    min-width: 80px;
  }
}
.blog_inner .image > a {
  display: block;
  padding-bottom: 60%;
  height: auto;
  position: relative;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
}
.blog_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%;
}
.blog_inner .info {
  flex: 1;
  padding-left: 20px;
  max-width: 100%;
}
.blog_inner .info .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.blog_inner .info .title a {
  color: #333;
}
.blog_inner .info .title a:hover {
  color: var(--primary-Color);
}
.blog_inner .info .date {
  position: relative;
  font-size: 0.9em;
  color: #000;
  display: block;
  font-weight: 300;
}
.blog_inner .info .date b {
  font-weight: 600;
}

/** 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: #dfdfdf;
  border-radius: 0px;
  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: 15px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0);
}
.paginate-nav ul > li a.prev i {
  background-image: url("../images/svg/icb-prev.svg");
}
.paginate-nav ul > li a.next i {
  background-image: url("../images/svg/icb-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/icb-prev.svg");
}
.paginate-nav ul li.nxt-link a i, .paginate-nav ul li.nxt-link span i {
  background-image: url("../images/svg/icb-next.svg");
}
.paginate-nav ul li.active a, .paginate-nav ul li.active span {
  background: var(--primary-Color);
  color: #fff;
}
.paginate-nav ul li.active a i, .paginate-nav ul li.active span i {
  filter: brightness(0) invert(1);
}

/** Paginav Product */
.woocommerce nav.woocommerce-pagination ul {
  display: flex !important;
  flex-wrap: wrap;
  border: 0 !important;
  margin: 0 !important;
  white-space: unset !important;
  justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul > li {
  border: 0 !important;
  padding: 0 4px !important;
  float: none !important;
}
.woocommerce nav.woocommerce-pagination ul > li span, .woocommerce nav.woocommerce-pagination ul > li a {
  height: 40px;
  width: 40px;
  background: #f0f0f0 !important;
  border-radius: 8px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #000 !important;
  font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul > li span i, .woocommerce nav.woocommerce-pagination ul > li a i {
  position: relative;
  width: 16px;
  height: 9px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.woocommerce nav.woocommerce-pagination ul > li span:hover, .woocommerce nav.woocommerce-pagination ul > li a:hover {
  background: var(--primary-Color) !important;
  color: #fff !important;
}
.woocommerce nav.woocommerce-pagination ul > li a.prev i {
  background-image: url("../images/svg/ick-prev.svg");
}
.woocommerce nav.woocommerce-pagination ul > li a.next i {
  background-image: url("../images/svg/ick-next.svg");
}
.woocommerce nav.woocommerce-pagination ul > li span.current {
  background: var(--primary-Color) !important;
  color: #fff !important;
}

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

@keyframes banner-zoom {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@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 */