@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}
/** HEADER ============================================*/
/** Topbar */
.gv_topbar_block {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.gv_topbar_block .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0;
}
@media (max-width: 991px) {
  .gv_topbar_block .list {
    display: none;
  }
}
.gv_topbar_block .list > li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gv_topbar_block .list > li .icon {
  height: 30px;
  min-width: 30px;
  max-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-Color);
  border-radius: 50%;
}
.gv_topbar_block .list > li .icon i {
  height: 14px;
  width: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}
.gv_topbar_block .list > li .name {
  max-width: 100%;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 300;
  color: #000;
}
.gv_topbar_block .list > li:nth-child(odd) {
  background: #f5f5f5;
}
.gv_topbar_block .tbr-carousel {
  display: none;
}
@media (max-width: 991px) {
  .gv_topbar_block .tbr-carousel {
    display: block;
  }
}
.gv_topbar_block .tbr-carousel .owl-nav [class*=owl-] {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 30px;
  width: 30px;
  border: 0;
  background: #fff;
  border-radius: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 16px 0px rgba(37, 37, 37, 0.16);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.gv_topbar_block .tbr-carousel .owl-nav [class*=owl-] i {
  height: 16px;
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.gv_topbar_block .tbr-carousel .owl-nav .owl-prev {
  left: 8px;
}
.gv_topbar_block .tbr-carousel .owl-nav .owl-prev:hover {
  background: var(--primary-Color);
}
.gv_topbar_block .tbr-carousel .owl-nav .owl-prev i {
  background-image: url("../images/svg/icb-prev.svg");
}
.gv_topbar_block .tbr-carousel .owl-nav .owl-next {
  right: 8px;
}
.gv_topbar_block .tbr-carousel .owl-nav .owl-next:hover {
  background: var(--primary-Color);
}
.gv_topbar_block .tbr-carousel .owl-nav .owl-next i {
  background-image: url("../images/svg/icb-next.svg");
}
.gv_topbar_block .tbr-carousel .top-item {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gv_topbar_block .tbr-carousel .top-item .icon {
  height: 30px;
  min-width: 30px;
  max-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-Color);
  border-radius: 50%;
}
.gv_topbar_block .tbr-carousel .top-item .icon i {
  height: 14px;
  width: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}
.gv_topbar_block .tbr-carousel .top-item .name {
  max-width: 100%;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 300;
  color: #000;
}
.gv_topbar_block .tbr-carousel .top-item:nth-child(odd) {
  background: #f5f5f5;
}

/** Header Main */
.gv_header_block {
  position: relative;
  background: var(--primary-Color);
  color: #fff;
  padding: 12px 0;
}
@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;
  padding-right: 32px;
}
.gv_header_block .container .flex .flx-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_header_block .logo {
  display: block;
}
.gv_header_block .logo img {
  height: 50px;
  width: auto;
  margin-right: 24px;
}
.gv_header_block .menu {
  display: inline-flex;
  background: #033ab7;
  border-radius: 4px;
  padding: 8px 14px 8px 10px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  border: 0;
  line-height: 20px;
}
.gv_header_block .menu i {
  height: 20px;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
}
.gv_header_block .menu.open i {
  background-image: url("../images/svg/icn-close.svg") !important;
}
.gv_header_block .mega-box {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(237, 237, 237, 0.16);
  border-radius: 8px;
  padding: 12px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: calc(100% + 22px);
  z-index: 999;
  width: 300px;
}
.gv_header_block .mega-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}
.gv_header_block .mega-box ul > li {
  display: block;
  position: relative;
  padding: 0px 8px;
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  border-left: 2px solid transparent;
}
.gv_header_block .mega-box ul > li > a {
  display: block;
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  transition: all 0.3s ease-in-out;
}
.gv_header_block .mega-box ul > li > a i {
  height: 10px;
  width: 10px;
  border-radius: 2px;
  border: 1px solid #4285f4;
  position: absolute;
  left: 0;
  top: 14px;
  display: block;
  transition: all 0.3s ease-in-out;
  transform: rotate(45deg);
  transform-origin: center;
}
.gv_header_block .mega-box ul > li:hover {
  background: #cae5ff;
  border-color: var(--primary-Color);
}
.gv_header_block .mega-box ul > li:hover a {
  color: var(--primary-Color);
}
.gv_header_block .mega-box ul > li:hover a i::after {
  background: var(--primary-Color);
}
.gv_header_block .search {
  position: relative;
  width: 480px;
}
@media (max-width: 1199px) {
  .gv_header_block .search {
    width: 320px;
  }
}
@media (max-width: 1023px) {
  .gv_header_block .search {
    width: 250px;
  }
}
.gv_header_block .search input[type=text] {
  background: #fff;
  border: 0;
  outline: none;
  border-radius: 4px;
  line-height: 20px;
  padding: 10px 16px;
  width: 100%;
  color: #000;
  padding-right: 44px;
}
.gv_header_block .search 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_header_block .search button i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}
.gv_header_block .cart {
  margin-left: 24px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 20px;
  border-radius: 8px;
}
@media (max-width: 1023px) {
  .gv_header_block .cart {
    margin-left: 12px;
  }
}
.gv_header_block .cart i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
  margin-right: 8px;
}
.gv_header_block .cart span {
  margin-left: 5px;
}
.gv_header_block .phone {
  margin-left: 24px;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 2px solid #dfdfdf;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 20px;
  border-radius: 8px;
}
@media (max-width: 1023px) {
  .gv_header_block .phone {
    margin-left: 12px;
  }
}
.gv_header_block .phone i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
  margin-right: 8px;
}
.gv_header_block .account {
  margin-left: 24px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.21);
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  border-radius: 4px;
}
@media (max-width: 1023px) {
  .gv_header_block .account {
    margin-left: 12px;
  }
}
.gv_header_block .account i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
  margin-right: 8px;
}

/** Header Mobile */
.gv_mobile_block {
  position: relative;
  background: var(--primary-Color);
  color: #fff;
  padding: 12px 0;
  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 {
  display: flex;
  align-items: center;
  padding-right: 32px;
}
.gv_mobile_block .container .flex .flx-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_mobile_block .logo {
  display: block;
}
.gv_mobile_block .logo img {
  height: 40px;
  width: auto;
  margin-right: 24px;
}
.gv_mobile_block .cart {
  margin-left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  height: 36px;
  width: 36px;
  background: rgba(255, 255, 255, 0.21);
  color: #fff;
  border-radius: 4px;
}
@media (max-width: 1023px) {
  .gv_mobile_block .cart {
    margin-left: 12px;
  }
}
.gv_mobile_block .cart i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}
.gv_mobile_block .cart span {
  position: absolute;
  height: 18px;
  width: 18px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -9px;
  right: -9px;
  background: #fff;
  color: #333;
  font-size: 12px;
  z-index: 1;
}
.gv_mobile_block .account {
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.21);
  padding: 0;
  width: 36px;
  height: 36px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  border-radius: 4px;
}
.gv_mobile_block .account i {
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block !important;
}
.gv_mobile_block button {
  height: 36px;
  width: 36px;
  background: rgba(255, 255, 255, 0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  outline: none;
  border: 0;
  margin-left: 12px;
  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: "Plus Jakarta Sans", sans-serif;
}
.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 #fff;
  color: #FFF;
}
.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 #fff;
  color: #FFF;
}
.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 0;
  margin-top: 60px;
  background: #ddd;
}
@media (max-width: 991px) {
  .gv_footer_block {
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .gv_footer_block .container > .row > [class*=col-] {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.gv_footer_block .logo {
  padding-bottom: 36px;
  position: relative;
  margin-top: -90px;
}
.gv_footer_block .logo a {
  display: inline-block;
  border-radius: 8px;
  padding: 12px 20px;
  background: var(--primary-Color);
  box-shadow: 0px 0px 10px 0px rgba(98, 97, 97, 0.2);
}
.gv_footer_block .logo a img {
  height: 60px;
  width: auto;
}
.gv_footer_block .contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .contact > li {
  display: block;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 20px;
}
.gv_footer_block .contact > li span {
  font-weight: 600;
}
.gv_footer_block .contact > li:last-child {
  padding-bottom: 0;
}
.gv_footer_block .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .menu > li {
  padding-bottom: 12px;
  display: block;
}
.gv_footer_block .menu > li a {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  display: block;
  padding-left: 16px;
}
.gv_footer_block .menu > li a i {
  height: 10px;
  width: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
}
.gv_footer_block .menu > li a:hover {
  color: var(--primary-Color);
}
.gv_footer_block .menu > li:last-child {
  padding-bottom: 0;
}
.gv_footer_block .social {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
}
.gv_footer_block .social a {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  border-radius: 3px;
  justify-content: center;
  margin-right: 10px;
}
.gv_footer_block .social a img {
  height: 16px;
  width: 16px;
  display: block;
}

/** HEADING ============================================*/
.head_block {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head_block .title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 16px;
  margin-bottom: 0;
  color: #333;
  position: relative;
  flex: 1;
}
.head_block .title::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-Color);
  left: 0;
}
.head_block > button {
  height: 34px;
  width: 34px;
  outline: none;
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  display: none;
  border: 0;
}
@media (max-width: 991px) {
  .head_block > button {
    display: flex;
  }
}
.head_block > button i {
  height: 20px;
  width: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.head_block > button.open i {
  transform: rotate(180deg);
}
.head_block ul.child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  top: 42px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .head_block ul.child {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 400px;
    align-items: initial;
    justify-content: initial;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #fff;
    padding: 8px 0;
    z-index: 4;
  }
}
.head_block ul.child > li {
  display: inline-block;
}
@media (max-width: 991px) {
  .head_block ul.child > li {
    display: block;
  }
  .head_block ul.child > li:last-child > a {
    border-bottom: 0;
  }
}
.head_block ul.child > li > a {
  font-size: 13px;
  font-weight: 400;
  display: block;
  color: #333;
  margin-left: 10px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  line-height: 20px;
  padding: 5px 16px;
  background: #fff;
  border-radius: 6px;
}
.head_block ul.child > li > a:hover {
  color: var(--primary-Color);
}
@media (max-width: 991px) {
  .head_block ul.child > li > a {
    box-shadow: none;
    margin-left: 0;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 1px dotted #eee;
  }
}

.head_section {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.head_section .title {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  position: relative;
  color: var(--primary-Color);
}

.head_footer {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.head_footer .title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}

/** BREADCRUMB ============================================*/
.gv_breadcrumb_block {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  background: #fff;
}
.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: "Arial", "Helvetica", sans-serif;
  font-size: 15px;
  line-height: 1.67;
  text-align: justify;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content h1 {
  font-weight: 700;
  font-size: 1.9em;
}
.entry-content h2 {
  font-weight: 700;
  font-size: 1.65em;
}
.entry-content h3 {
  font-weight: 700;
  font-size: 1.45em;
}
.entry-content h4 {
  font-weight: 700;
  font-size: 1.2em;
}
.entry-content h5 {
  font-weight: 700;
  font-size: 1.05em;
}
.entry-content h6 {
  font-weight: 700;
  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 .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: "Plus Jakarta Sans", sans-serif;
  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 ============================================*/
.product_inner {
  font-family: var(--primary-Font);
  position: relative;
  margin: 0;
  padding: 0px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}
.product_inner .image {
  position: relative;
  border-bottom: 1px solid #eee;
}
.product_inner .image .sale {
  position: absolute;
  background: red;
  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;
}
.product_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;
}
.product_inner .image > a {
  display: block;
  padding-bottom: 100%;
  width: 100%;
  background-position: center;
  position: relative;
  height: auto;
  overflow: hidden;
}
.product_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;
}
.product_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;
}
.product_inner .image:hover > a > span {
  bottom: 0;
}
.product_inner .info {
  position: relative;
  padding: 10px 8px 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.product_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;
}
.product_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);
}
.product_inner .info .title a:hover {
  color: var(--primary-Color);
}
.product_inner .info .price {
  display: block;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_inner .info .price span {
  font-size: 15px;
  font-weight: 700;
  color: red;
  display: inline-flex;
  align-items: center;
}
.product_inner .info .price span u {
  font-size: 12px;
  margin-bottom: 3px;
  margin-left: 1px;
}
.product_inner .info .price span.old {
  text-decoration: line-through;
  color: #888;
  font-weight: 400;
  font-size: 13px;
  margin-left: 10px;
}
.product_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;
}

.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;
}

.post_inner {
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  margin: 0;
  padding: 0px;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(215, 215, 215, 0.21);
}
.post_inner .image {
  position: relative;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 62%;
  width: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.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 .image span {
  height: 45px;
  width: 45px;
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 6px;
  background: var(--primary-Color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 3;
}
.post_inner .image span b {
  display: block;
  text-align: center;
  line-height: 1.1;
  font-size: 13px;
  font-weight: 400;
}
.post_inner .image span i {
  font-style: normal;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  display: block;
  text-align: center;
}
.post_inner .info {
  position: relative;
  padding: 16px 12px;
}
@media (max-width: 767px) {
  .post_inner .info {
    padding: 16px 8px;
  }
}
.post_inner .info h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  position: relative;
  text-align: center;
}
.post_inner .info h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
}
.post_inner .info h3 a:hover {
  color: var(--primary-Color);
}

.blog_inner {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0px;
  display: flex;
}
.blog_inner .image {
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 991px) {
  .blog_inner .image {
    max-width: 200px;
    min-width: 200px;
  }
}
@media (max-width: 575px) {
  .blog_inner .image {
    max-width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    padding-bottom: 12px;
  }
}
.blog_inner .image > a {
  display: block;
  padding-bottom: 66%;
  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;
}
@media (max-width: 575px) {
  .blog_inner .info {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.blog_inner .info .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-top: 8px;
}
.blog_inner .info .title a {
  color: #333;
}
.blog_inner .info .title a:hover {
  color: var(--primary-Color);
}
.blog_inner .info .date {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  background: #f2f2f2;
  border-radius: 4px;
  padding: 4px 10px;
}
.blog_inner .info .date span {
  font-size: 14px;
  font-style: italic;
  color: #000;
  display: inline-block;
  margin-right: 10px;
  font-weight: 300;
}
.blog_inner .info .desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.56;
}

/** Call */
.gv-button-call {
  position: fixed;
  bottom: 20px;
  left: 10px;
  z-index: 99999;
}
.gv-button-call .button-contact {
  position: relative;
  margin-top: -5px;
}
.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 #4285f4;
  background-color: rgba(66, 133, 244, 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: #4285f4;
  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%);
}

/** Contact */
.gv-button-contact {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99999;
}
.gv-button-contact .button-contact {
  position: relative;
  margin-top: -5px;
}
.gv-button-contact .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-contact .button-contact .phone-vr .phone-vr-circle-fill {
  width: 65px;
  height: 65px;
  top: 12px;
  left: 12px;
  position: absolute;
  box-shadow: 0 0 0 0 #e60808;
  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-contact .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-contact .button-contact .phone-vr .phone-vr-img-circle a {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
}
.gv-button-contact .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-contact #zalo-vr .phone-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2196F3;
  background-color: rgba(33, 150, 243, 0.7);
}
.gv-button-contact #zalo-vr .phone-vr .phone-vr-img-circle {
  background-color: #2196F3;
}
.gv-button-contact .group-box {
  position: absolute;
  right: 8px;
  z-index: 99;
  background: #fff;
  border-radius: 5px;
  padding: 8px;
  bottom: 100%;
  margin-bottom: 12px;
  box-shadow: 0px 0px 2px 0px #666;
}
.gv-button-contact .group-box::after {
  content: "";
  height: 9px;
  width: 16px;
  position: absolute;
  right: 24px;
  bottom: -9px;
  filter: drop-shadow(0px 1px 0px #989898);
  z-index: 2;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #fff;
}
.gv-button-contact .group-box a {
  border-radius: 3px;
  height: 34px;
  line-height: 34px;
  padding: 6px;
  display: flex;
  align-items: center;
  width: 165px;
  font-size: 14px;
  margin-bottom: 6px;
  background: #fff;
  color: #333;
  border: 1px solid #e1e1e1;
  margin-bottom: 5px;
  transition: all 0.6s ease;
}
.gv-button-contact .group-box a:hover {
  background: #dfdfdf;
  color: #4285f4;
}
.gv-button-contact .group-box a:last-child {
  margin-bottom: 0;
}
.gv-button-contact .group-box a img {
  height: 100%;
  width: auto;
  margin-right: 16px;
}
.gv-button-contact .group-box span.gx-close {
  height: 20px;
  width: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
  background: #000;
  border-radius: 100%;
  z-index: 2;
}
.gv-button-contact .group-box span.gx-close::after, .gv-button-contact .group-box span.gx-close::before {
  content: "";
  background: #fff;
  top: 50%;
  left: 50%;
  position: absolute;
}
.gv-button-contact .group-box span.gx-close::before {
  height: 1px;
  width: 16px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.gv-button-contact .group-box span.gx-close::after {
  height: 16px;
  width: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}

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