/** MAIN ============================================*/
/** Banner */
.gv_banner_block {
  position: relative;
  overflow: hidden;
}
.gv_banner_block .inner {
  position: relative;
}
.gv_banner_block .inner .banner-item a {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 30%;
}
.gv_banner_block .inner .banner-item a 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_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: 0;
}
.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(--second-Color);
  opacity: 1;
}

/** Product */
.gv_section_product {
  position: relative;
  background: linear-gradient(0deg, #F7F9F9 0%, rgba(247, 249, 249, 0) 49.93%);
  padding: 48px 0;
}
@media (max-width: 767px) {
  .gv_section_product {
    padding: 32px 0;
  }
}
.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;
  }
}

/** Service */
.gv_section_service {
  position: relative;
  background: #e5e5e5;
  padding: 48px 0;
}
@media (max-width: 767px) {
  .gv_section_service {
    padding: 32px 0;
  }
}
.gv_section_service .container .row [class*=col-] {
  padding-bottom: 15px;
  padding-top: 15px;
}
.gv_section_service .service_item a.inner {
  display: flex;
  padding: 15px 20px;
  background: #fff;
  align-items: center;
  border-radius: 10px;
  transition: all 0.4s ease 0s;
  position: relative;
  overflow: hidden;
  color: #333;
}
.gv_section_service .service_item a.inner::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 66%;
  background: rgb(0, 58, 112);
  transform: skewX(-20deg);
  transition: all 0.3s ease 0s;
  opacity: 0.1;
}
.gv_section_service .service_item a.inner .icon {
  position: relative;
  display: block;
  text-align: center;
  max-width: 65px;
  min-width: 65px;
  z-index: 1;
}
.gv_section_service .service_item a.inner .icon img {
  height: 65px;
  width: auto;
}
.gv_section_service .service_item a.inner .info {
  display: block;
  position: relative;
  z-index: 1;
  flex: 1;
  padding-left: 25px;
  transition: all 0.3s ease 0s;
}
.gv_section_service .service_item a.inner .info h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: normal;
  letter-spacing: 0px;
  padding-bottom: 10px;
  position: relative;
  color: #333;
  transition: all 0.3s ease 0s;
}
.gv_section_service .service_item a.inner .info h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: #ec1c24;
}
.gv_section_service .service_item a.inner:hover::before {
  left: 105px;
  transform: skewX(-20deg);
  opacity: 1;
}
.gv_section_service .service_item a.inner:hover .info {
  padding-left: 35px;
}
.gv_section_service .service_item a.inner:hover .info h4 {
  color: #FFF;
}

/** Gallery */
.gv_section_gallery {
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, #F7F9F9 0%, rgba(247, 249, 249, 0) 49.93%);
  padding: 48px 0;
}
@media (max-width: 767px) {
  .gv_section_gallery {
    padding: 32px 0;
  }
}
.gv_section_gallery .gallery_item span {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 70%;
}
.gv_section_gallery .gallery_item 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_gallery .owl-nav {
  margin: 0;
}
.gv_section_gallery .owl-nav [class*=owl-] {
  height: 36px;
  width: 36px;
  background: #FFF;
  border: 0;
  opacity: 1;
  visibility: visible;
}
.gv_section_gallery .owl-nav [class*=owl-] i {
  line-height: 36px;
  font-size: 20px;
  color: #2c72c6;
}
.gv_section_gallery .owl-nav [class*=owl-]:hover {
  background: #2c72c6;
}
.gv_section_gallery .owl-nav [class*=owl-]:hover > i {
  color: #FFF;
}
.gv_section_gallery .owl-nav .owl-prev {
  left: 0px;
}
.gv_section_gallery .owl-nav .owl-next {
  right: 0px;
}

/** News */
.gv_section_news {
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, #F7F9F9 0%, rgba(247, 249, 249, 0) 49.93%);
  padding: 48px 0;
}
@media (max-width: 767px) {
  .gv_section_news {
    padding: 32px 0;
  }
}
.gv_section_news .container > .row {
  align-items: stretch;
}
.gv_section_news .container > .row > [class*=col-] {
  min-height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
.gv_section_news .more-x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.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 24px;
  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: #FFF;
  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;
}

/** Customer */
.gv_section_customer {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
}
@media (max-width: 767px) {
  .gv_section_customer {
    padding: 32px 0;
  }
}
.gv_section_customer .container .row {
  align-items: center;
}
@media (max-width: 1023px) {
  .gv_section_customer .container .row {
    flex-direction: column-reverse;
  }
  .gv_section_customer .container .row [class*=col-] {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.gv_section_customer .customer-item {
  position: relative;
  padding: 2px;
}
.gv_section_customer .customer-item .inner {
  box-shadow: 0 0px 6px -2px rgba(0, 0, 0, 0.23);
  padding: 20px;
}
.gv_section_customer .customer-item .inner .avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
}
.gv_section_customer .customer-item .inner .avatar span {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
  border-radius: 100%;
  border: 1px solid #e9e9e9;
}
.gv_section_customer .customer-item .inner .avatar 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_customer .customer-item .inner .rate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.gv_section_customer .customer-item .inner .rate img {
  width: 20px;
  height: auto;
}
.gv_section_customer .customer-item .inner .info h3 {
  font-size: 18px;
  text-align: center;
  color: var(--primary-Color);
  font-weight: 700;
  margin-bottom: 15px;
}
.gv_section_customer .customer-item .inner .info .desc {
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 212px;
}

/** Contact */
.gv_section_contact {
  position: relative;
  overflow: hidden;
  background: var(--primary-Color);
  padding: 48px 0;
}
@media (max-width: 767px) {
  .gv_section_contact {
    padding: 32px 0;
  }
}
.gv_section_contact .container .row {
  align-items: stretch;
}
.gv_section_contact .container .row [class*=col-] {
  height: 100%;
}
@media (max-width: 767px) {
  .gv_section_contact .container .row [class*=col-] {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.gv_section_contact .contact-inner {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.gv_section_contact .contact-inner .icon {
  flex: 0 0 17.15%;
  max-width: 17.15%;
}
.gv_section_contact .contact-inner .icon span {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}
.gv_section_contact .contact-inner .icon span i {
  height: 35px;
  width: 35px;
  display: block !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gv_section_contact .contact-inner .info {
  flex: 0 0 82.85%;
  max-width: 82.85%;
  padding-left: 10px;
  color: #FFF;
}
.gv_section_contact .contact-inner .info h3.value {
  font-size: 18px;
  color: #FFF;
  font-weight: 700;
}
.gv_section_contact .contact-inner .info .name {
  text-align: justify;
  margin-bottom: 5px;
}
.gv_section_contact .image span {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
}
.gv_section_contact .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%;
}/*# sourceMappingURL=main.css.map */