@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}
/** Header Desktop */
.gv_header_block {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all 0.5s ease;
  background: var(--primary-Color);
  padding: 12px 0;
  font-family: var(--primary-Font);
}
@media (max-width: 991px) {
  .gv_header_block {
    display: none;
  }
}
.gv_header_block .container .row {
  align-items: center;
}
.gv_header_block .logo {
  position: relative;
}
.gv_header_block .logo a {
  display: inline-block;
}
.gv_header_block .logo a img {
  height: 70px;
  width: auto;
}
.gv_header_block .search form {
  display: flex;
  align-items: center;
}
.gv_header_block .search form input {
  flex: 1;
  max-width: 100%;
  background: #fff;
  border: 0;
  padding: 10px 15px;
  outline: none;
  line-height: 22px;
  font-size: 15px;
  color: #000;
}
.gv_header_block .search form button {
  min-width: 70px;
  max-width: 70px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: 0;
  line-height: 22px;
  padding: 0px 10px;
  cursor: pointer;
  border-radius: 0px 6px 6px 0;
  background: #016f26;
}
.gv_header_block .search form button i {
  height: 20px;
  width: 20px;
  background-image: url("../images/icon/icx-loupe.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: invert(1);
}
.gv_header_block .extra {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_header_block .extra .phone {
  display: flex;
  margin-right: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  letter-spacing: 0.4px;
}
.gv_header_block .extra .phone a {
  color: #fff;
  margin-left: 5px;
}
.gv_header_block .extra .phone > span {
  min-width: 32px;
  max-width: 32px;
  display: flex;
  margin-right: 10px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.16);
  height: 32px;
  align-items: center;
  justify-content: center;
}
.gv_header_block .extra .phone > span i {
  height: 20px;
  width: 20px;
  background-image: url("../images/icon/icx-phone.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: invert(1);
}
.gv_header_block .extra .account {
  display: flex;
  align-items: center;
  margin-right: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.gv_header_block .extra .account a {
  color: #fff;
}
.gv_header_block .extra .account > span {
  min-width: 32px;
  max-width: 32px;
  display: flex;
  margin-right: 10px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.16);
  height: 32px;
  align-items: center;
  justify-content: center;
}
.gv_header_block .extra .account > span i {
  height: 20px;
  width: 20px;
  background-image: url("../images/icon/icx-user.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: invert(1);
}
.gv_header_block .extra .cart {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.gv_header_block .extra .cart a {
  color: #fff;
}
.gv_header_block .extra .cart b {
  display: none;
}
.gv_header_block .extra .cart > span {
  min-width: 32px;
  max-width: 32px;
  display: flex;
  margin-right: 10px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.16);
  height: 32px;
  align-items: center;
  justify-content: center;
}
.gv_header_block .extra .cart > span i {
  height: 20px;
  width: 20px;
  background-image: url("../images/icon/icx-cart.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: invert(1);
}

/** Header Mobile */
.gv_mobile_block {
  position: relative;
  background: var(--primary-Color);
  color: #fff;
  padding: 8px 0;
  width: 100%;
  display: none;
}
@media (max-width: 991px) {
  .gv_mobile_block {
    display: block;
  }
}
.gv_mobile_block .container .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gv_mobile_block .logo {
  position: relative;
}
.gv_mobile_block .logo a {
  display: inline-block;
}
.gv_mobile_block .logo a img {
  height: 50px;
  width: auto;
}
.gv_mobile_block .extra {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_mobile_block .extra .cart {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  margin-right: 12px;
}
.gv_mobile_block .extra .cart > a {
  height: 32px;
  width: 32px;
  display: flex;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.16);
  height: 32px;
  align-items: center;
  justify-content: center;
}
.gv_mobile_block .extra .cart > a i {
  height: 20px;
  width: 20px;
  background-image: url("../images/icon/icx-cart.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: invert(1);
}
.gv_mobile_block .extra .menu button {
  height: 32px;
  width: 32px;
  display: flex;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.16);
  height: 32px;
  outline: none;
  border: 1px solid #fff;
  border-radius: 3px;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.gv_mobile_block .extra .menu button i {
  height: 20px;
  width: 20px;
  background-image: url("../images/icon/icx-menu.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: invert(1);
}

/** Navigate */
.gv_navigate_block {
  background: #fff;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  .gv_navigate_block {
    display: none;
  }
}
.gv_navigate_block .container > .row {
  align-items: center;
}
.gv_navigate_block .mega {
  position: relative;
}
.gv_navigate_block .mega > button {
  background: #016f26;
  color: #fff;
  border: 0;
  outline: none;
  line-height: 22px;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 16px;
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.gv_navigate_block .mega > button svg {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.gv_navigate_block .mega > button svg path {
  fill: #fff;
}
.gv_navigate_block .mega .mega-nav {
  position: absolute;
  z-index: 11;
  width: 100%;
  left: 0;
  top: 100%;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.16);
  display: none;
}
.gv_navigate_block .mega .mega-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_navigate_block .mega .mega-nav ul li {
  display: block;
  padding: 10px 0;
  line-height: 22px;
  border-bottom: 1px dotted #dedede;
}
.gv_navigate_block .mega .mega-nav ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.gv_navigate_block .mega .mega-nav ul li a:hover {
  color: var(--primary-Color);
}
.gv_navigate_block .mega .mega-nav ul li:last-child {
  border-bottom: 0;
}
.gv_navigate_block .list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 0;
}
.gv_navigate_block .list li {
  display: inline-block;
}
.gv_navigate_block .list li span {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px 0;
  padding-left: 24px;
}
.gv_navigate_block .list li span svg {
  height: 18px;
  width: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.gv_navigate_block .list li span svg path {
  fill: red;
}

/** Banner */
.gv_banner_block {
  position: relative;
  font-family: "Open Sans", sans-serif;
}
.gv_banner_block .owl-carousel .owl-nav [class*=owl-] {
  height: 35px;
  width: 35px;
  margin: 0;
  background: var(--primary-Color);
  border-color: var(--primary-Color);
}
.gv_banner_block .owl-carousel .owl-nav [class*=owl-] i {
  color: #fff;
  font-size: 20px;
}
.gv_banner_block .owl-carousel .owl-nav .owl-prev {
  left: 20px;
}
.gv_banner_block .owl-carousel .owl-nav .owl-next {
  right: 20px;
}
.gv_banner_block .banner-item > a {
  display: block;
  position: relative;
  padding-bottom: 42%;
  width: 100%;
  background-position: center;
}
.gv_banner_block .banner-item > a img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/** Product */
.gv_section_product {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.gv_section_product .desc {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
.gv_section_product .box-product {
  padding: 20px 0 0;
  position: relative;
}
.gv_section_product .box-product .row {
  align-items: stretch;
  margin-left: -5px;
  margin-right: -5px;
}
.gv_section_product .box-product .row > [class*=col-] {
  min-height: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
.gv_section_product .box-product .product-item {
  padding-top: 10px;
  padding-bottom: 10px;
}
/** Prize */
.gv_section_prize {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
.gv_section_prize .desc {
  font-size: 16px;
  line-height: 1.7;
}
.gv_section_prize .box-prize {
  padding-bottom: 20px;
}
.gv_section_prize .box-prize:last-child {
  padding-bottom: 0;
}
.gv_section_prize .box-prize .desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
.gv_section_prize .box-prize .desc table tbody tr td {
  padding: 8px 10px;
}
.gv_section_prize .box-prize .desc table tbody tr td:last-child {
  width: 30%;
  text-align: center;
  color: red;
}
@media (max-width: 767px) {
  .gv_section_prize .box-prize .desc table tbody tr td:last-child {
    width: auto;
  }
}
.gv_section_prize .box-prize .desc table tbody tr:first-child {
  background: #016f26;
}
.gv_section_prize .box-prize .desc table tbody tr:first-child td {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

/** Benefit */
.gv_section_benefit {
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.gv_section_benefit .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.gv_section_benefit .desc table {
  border: 0;
}
.gv_section_benefit .desc table tr {
  border-bottom: 1px solid #f0f0f0;
}
.gv_section_benefit .desc table tr td {
  border: 0;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 400;
  vertical-align: middle;
}
.gv_section_benefit .desc table tr td:first-child {
  width: 30%;
}
@media (max-width: 767px) {
  .gv_section_benefit .desc table tr td:first-child {
    width: auto;
  }
}
.gv_section_benefit .benefit-item .inner {
  padding: 10px 0;
}
.gv_section_benefit .benefit-item .inner .image span {
  position: relative;
  display: block;
  padding-bottom: 59%;
  width: 100%;
  background-position: center;
}
.gv_section_benefit .benefit-item .inner .image span img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/** Bestest */
.gv_section_bestest {
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.gv_section_bestest .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.gv_section_bestest .desc table {
  border: 0;
}
.gv_section_bestest .desc table tr {
  border-bottom: 1px solid #f0f0f0;
}
.gv_section_bestest .desc table tr td {
  border: 0;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 400;
  vertical-align: middle;
}
.gv_section_bestest .desc table tr td:first-child {
  width: 30%;
}
@media (max-width: 767px) {
  .gv_section_bestest .desc table tr td:first-child {
    width: auto;
  }
}
.gv_section_bestest .bestest-item .inner {
  padding: 10px 0;
}
.gv_section_bestest .bestest-item .inner .box {
  position: relative;
}
.gv_section_bestest .bestest-item .inner .box span {
  position: relative;
  display: block;
  padding-bottom: 59%;
  width: 100%;
  background-position: center;
}
.gv_section_bestest .bestest-item .inner .box span img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.gv_section_bestest .bestest-item .inner h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 12px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

/** Choose */
.gv_section_choose {
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
}
.gv_section_choose .desc {
  font-size: 16px;
  font-weight: 400;
}
.gv_section_choose .collapx {
  position: relative;
}
.gv_section_choose .collapx .collapx-item {
  position: relative;
}
.gv_section_choose .collapx .collapx-item .colx-name {
  padding: 14px 10px;
  border-top: 1px solid #ccc;
  padding-left: 40px;
  position: relative;
  line-height: 22px;
  cursor: pointer;
}
.gv_section_choose .collapx .collapx-item .colx-name > span {
  height: 20px;
  width: 20px;
  position: absolute;
  left: 10px;
  top: 14px;
  transition: all 0.3s ease 0s;
}
.gv_section_choose .collapx .collapx-item .colx-name > span svg {
  display: block;
  height: 20px;
  width: 20px;
}
.gv_section_choose .collapx .collapx-item .colx-name > span svg path {
  fill: #666;
}
.gv_section_choose .collapx .collapx-item .colx-name > h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}
.gv_section_choose .collapx .collapx-item .colx-desc {
  padding: 10px 10px;
  padding-left: 40px;
}
.gv_section_choose .collapx .collapx-item.active .colx-name {
  border-color: var(--primary-Color);
  background: #f0f0f0;
}
.gv_section_choose .collapx .collapx-item.active .colx-name span {
  transform: rotate(180deg);
}
.gv_section_choose .collapx .collapx-item.active .colx-name span svg path {
  fill: var(--primary-Color);
}
.gv_section_choose .collapx .collapx-item.active .colx-name h4 {
  color: var(--primary-Color);
}
.gv_section_choose .choose-item .inner {
  padding: 10px 0;
}
.gv_section_choose .choose-item .inner .image span {
  position: relative;
  display: block;
  padding-bottom: 59%;
  width: 100%;
  background-position: center;
}
.gv_section_choose .choose-item .inner .image span img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/** Procedure */
.gv_section_procedure {
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
}
.gv_section_procedure .container > .row {
  align-items: stretch;
}
.gv_section_procedure .container > .row > [class*=col-] {
  min-height: 100%;
}
.gv_section_procedure .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.gv_section_procedure .procedure-item {
  padding-top: 15px;
  padding-bottom: 15px;
}
.gv_section_procedure .procedure-item .inner {
  height: 100%;
  padding: 16px 16px;
  border-radius: 6px;
  background: var(--primary-Color);
  color: #fff;
}
.gv_section_procedure .procedure-item .inner .name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.gv_section_procedure .procedure-item .inner .desc {
  color: #fff;
  font-style: italic;
}

/** Question */
.gv_section_question {
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
}
.gv_section_question .desc {
  font-size: 16px;
  font-weight: 400;
}
.gv_section_question .collapx {
  position: relative;
}
.gv_section_question .collapx .collapx-item {
  position: relative;
}
.gv_section_question .collapx .collapx-item .colx-name {
  padding: 14px 10px;
  border-top: 1px solid #ccc;
  padding-left: 40px;
  position: relative;
  line-height: 22px;
  cursor: pointer;
}
.gv_section_question .collapx .collapx-item .colx-name > span {
  height: 20px;
  width: 20px;
  position: absolute;
  left: 10px;
  top: 14px;
  transition: all 0.3s ease 0s;
}
.gv_section_question .collapx .collapx-item .colx-name > span svg {
  display: block;
  height: 20px;
  width: 20px;
}
.gv_section_question .collapx .collapx-item .colx-name > span svg path {
  fill: #666;
}
.gv_section_question .collapx .collapx-item .colx-name > h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}
.gv_section_question .collapx .collapx-item .colx-desc {
  padding: 10px 10px;
  padding-left: 40px;
}
.gv_section_question .collapx .collapx-item.active .colx-name {
  border-color: var(--primary-Color);
  background: #f0f0f0;
}
.gv_section_question .collapx .collapx-item.active .colx-name span {
  transform: rotate(180deg);
}
.gv_section_question .collapx .collapx-item.active .colx-name span svg path {
  fill: var(--primary-Color);
}
.gv_section_question .collapx .collapx-item.active .colx-name h4 {
  color: var(--primary-Color);
}

/**
 * PAGE
 */
.gv_section_page {
  position: relative;
  overflow: hidden;
  font-family: "Arial", "Helvetica", sans-serif;
}
.gv_section_page .contact_box {
  border: 1px solid #ccc;
  padding: 25px;
}
.gv_section_page .contact_box .note {
  background: #f2f2f2;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.gv_section_page .contact_box .note b {
  color: red;
  font-weight: 400;
}
.gv_section_page .contact_box .form_box .wpcf7-form input,
.gv_section_page .contact_box .form_box .wpcf7-form textarea {
  border-radius: 0;
  border-color: #999;
  padding: 8px 15px;
  margin-bottom: 15px;
}
.gv_section_page .contact_box .form_box .wpcf7-form input.wpcf7-submit {
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 9px 30px;
  cursor: pointer;
}
.gv_section_page .contact_box .form_box .wpcf7-form div > label {
  width: 230px;
  float: left;
}
.gv_section_page .contact_box .form_box .wpcf7-form div > span {
  width: 100%;
  margin-left: 245px;
  max-width: 400px;
  display: block;
}

/**
 * SINGLE
 */
.gv_section_single {
  position: relative;
  overflow: hidden;
  font-family: "Arial", "Helvetica", sans-serif;
}
.gv_section_single .container > .row {
  margin-right: -25px;
  margin-left: -25px;
}
.gv_section_single .container > .row > [class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 35px;
  padding-bottom: 35px;
}

/**
 * BLOG & NEWS
 */
.gv_section_blog {
  position: relative;
  overflow: hidden;
  font-family: "Arial", "Helvetica", sans-serif;
}
.gv_section_blog .container > .row {
  margin-right: -25px;
  margin-left: -25px;
}
.gv_section_blog .container > .row > [class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.gv_section_blog .content_blog .main_list .list_box .post_item {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.gv_section_blog .content_blog .main_list .list_box .post_item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

/** Footer */
.gv_footer_block {
  position: relative;
  overflow: hidden;
  background: var(--primary-Color);
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
.gv_footer_block .container-flex {
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.gv_footer_block .container-flex > .row > [class*=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.gv_footer_block .desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.64;
}
.gv_footer_block .desc a {
  color: #fff;
}/*# sourceMappingURL=desktop.css.map */