/** MAIN ============================================*/
/** Banner */
.gv_banner_block {
  position: relative;
  overflow: hidden;
}
.gv_banner_block .inner {
  position: relative;
}
.gv_banner_block .inner .banner-item a {
  display: block;
  position: relative;
}
.gv_banner_block .inner .banner-item a img {
  display: block;
  width: 100%;
  height: auto;
}
.gv_banner_block .inner .owl-nav {
  margin: 0;
}
@media (max-width: 767px) {
  .gv_banner_block .inner .owl-nav {
    display: none;
  }
}
.gv_banner_block .inner .owl-nav [class*=owl-] {
  height: 46px;
  width: 46px;
  background: rgba(248, 248, 248, 0.2);
  border: 0;
}
.gv_banner_block .inner .owl-nav [class*=owl-] i {
  line-height: 46px;
  font-size: 25px;
  color: #FFF;
}
.gv_banner_block .inner .owl-nav [class*=owl-]:hover {
  background: #FFF;
}
.gv_banner_block .inner .owl-nav [class*=owl-]:hover > i {
  color: #2c72c6;
}
.gv_banner_block .inner .owl-nav .owl-prev {
  left: 0px;
}
.gv_banner_block .inner .owl-nav .owl-next {
  right: 0px;
}
.gv_banner_block .inner .owl-dots {
  bottom: 10px;
}
.gv_banner_block .inner .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  opacity: 0.3;
  border: 0;
  background: #fff;
}
.gv_banner_block .inner .owl-dots .owl-dot.active span {
  background: var(--primary-Color);
  opacity: 1;
}

/** INTRO */
.gv_section_intro {
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .gv_section_intro .container > .row {
    margin: 0 -6px;
  }
}
@media (max-width: 991px) {
  .gv_section_intro .container > .row > [class*=col-] {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.gv_section_intro .container > .row > [class*=col-] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.gv_section_intro .intro-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary-Color);
  border-radius: 6px;
  padding: 10px 10px;
  color: #fff;
}
.gv_section_intro .intro-item > a span {
  display: inline-block;
  line-height: 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}
.gv_section_intro .intro-item > a svg {
  height: 18px;
  width: 18px;
  fill: #fff;
}

/** PRODUCT */
.gv_section_product {
  position: relative;
  padding: 12px 0 40px;
}
.gv_section_product .container .row {
  align-items: stretch;
}
@media (max-width: 575px) {
  .gv_section_product .container .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.gv_section_product .container .row [class*=col-] {
  min-height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 575px) {
  .gv_section_product .container .row [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.gv_section_product .head_section {
  margin-bottom: 16px;
}
/** NEWS */
.gv_section_news {
  position: relative;
  overflow: hidden;
  background: #f1f2f3;
  padding: 40px 0;
}
.gv_section_news .head_section {
  padding-bottom: 30px;
}
.gv_section_news .more-x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.gv_section_news .more-x a {
  background: var(--primary-Color);
  color: #FFF;
  border: 1px solid var(--primary-Color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  outline: none;
  text-align: center;
  padding: 12px 36px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 1.6px;
  line-height: 16px;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.gv_section_news .more-x a::before {
  content: "";
  background: #f1f2f3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: -1;
}
.gv_section_news .more-x a:hover {
  cursor: pointer;
  color: var(--primary-Color);
}
.gv_section_news .more-x a:hover::before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
.gv_section_news .more-x a:nth-child(2n) {
  background: #FFF;
  color: var(--primary-Color);
}
.gv_section_news .more-x a:nth-child(2n)::before {
  background: var(--primary-Color);
}
.gv_section_news .more-x a:nth-child(2n):hover {
  color: #FFF;
}

/** ABOUT */
.gv_section_about {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}
.gv_section_about .container > .row {
  align-items: center;
}
@media (max-width: 991px) {
  .gv_section_about .container > .row .col-left {
    padding-bottom: 24px;
  }
}
.gv_section_about .image img {
  width: 100%;
  height: auto;
}
.gv_section_about .info .head_section {
  margin-bottom: 20px;
}
.gv_section_about .info .desc {
  text-align: justify;
  margin-bottom: 20px;
}
.gv_section_about .info .more-x a {
  background: var(--primary-Color);
  color: #FFF;
  border: 1px solid var(--primary-Color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  outline: none;
  text-align: center;
  padding: 12px 36px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 1.6px;
  line-height: 16px;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.gv_section_about .info .more-x a::before {
  content: "";
  background: #f1f2f3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: -1;
}
.gv_section_about .info .more-x a:hover {
  cursor: pointer;
  color: var(--primary-Color);
}
.gv_section_about .info .more-x a:hover::before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
.gv_section_about .info .more-x a:nth-child(2n) {
  background: #FFF;
  color: var(--primary-Color);
}
.gv_section_about .info .more-x a:nth-child(2n)::before {
  background: var(--primary-Color);
}
.gv_section_about .info .more-x a:nth-child(2n):hover {
  color: #FFF;
}

/** REGISGER */
.gv_section_register {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gv_section_register::before {
  content: "";
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
}
.gv_section_register .container {
  position: relative;
  z-index: 3;
}
.gv_section_register .head_section {
  margin-bottom: 12px;
}
.gv_section_register .head_section .title {
  color: #FFF;
}
.gv_section_register .desc {
  color: #FFF;
}
.gv_section_register .box {
  width: 100%;
  margin: 0 auto;
}
.gv_section_register .box .row {
  margin-left: -10px;
  margin-right: -10px;
}
.gv_section_register .box .row [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .gv_section_register .box .row [class*=col-] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.gv_section_register .box .wpcf7-form p {
  margin-bottom: 0;
}
.gv_section_register .box .wpcf7-form input,
.gv_section_register .box .wpcf7-form select {
  height: 48px;
  border: 0;
  padding: 0 15px;
  color: #4c4c4c;
  background: #fff;
  font-family: var(--second-Font);
  font-size: 14px;
  margin-bottom: 0;
  width: 100%;
  outline: none;
  border-radius: 0;
}
.gv_section_register .box .wpcf7-form input.wpcf7-submit {
  height: 48px;
  width: 100%;
  font-family: var(--second-Font);
  background: var(--primary-Color);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  border-radius: 0;
  font-size: 15px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 0;
  padding: 0 15px;
}
.gv_section_register .box .wpcf7-form .wpcf7-response-output {
  border-color: #dc3232;
  color: #FFF;
}
.gv_section_register .note {
  font-family: var(--second-Font);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: #FFF;
  text-align: center;
}/*# sourceMappingURL=main.css.map */