/** Desktop
--------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
/** Header
--------------------------------------------- */
.gv_header_block {
  position: relative;
  background: var(--primary-Color);
  transition: all 0.45s ease 0s;
  border-bottom: 0;
  padding: 8px 0;
  color: #fff;
}
.gv_header_block .container {
  position: relative;
}
.gv_header_block .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.gv_header_block .flex .head-left {
  padding-right: 30px;
}
.gv_header_block .flex .head-right {
  padding-left: 20px;
}
.gv_header_block .logo a {
  display: inline-block;
}
.gv_header_block .logo a img {
  height: 68px;
  width: auto;
}
.gv_header_block .navi {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gv_header_block .navi ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_header_block .navi .main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.gv_header_block .navi .main-nav > li {
  display: inline-block;
  position: relative;
  padding: 12px 5px;
}
.gv_header_block .navi .main-nav > li > a {
  display: block;
  padding: 13px 16px 11px;
  line-height: 22px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #fff;
  transition: all 0.45s ease 0s;
  background: transparent;
  border-radius: 10px;
  text-transform: uppercase;
}
.gv_header_block .navi .main-nav > li i.arrow {
  display: none;
}
.gv_header_block .navi .main-nav > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 5px;
  background: #fff;
  box-shadow: 0px 0px 7px -2px #ccc;
  border-radius: 2px;
  min-width: 240px;
  display: none;
  z-index: 11;
}
.gv_header_block .navi .main-nav > li > .sub-menu::before {
  content: "";
  height: 9px;
  width: 14px;
  position: absolute;
  left: 15px;
  top: -9px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid #fff;
  filter: drop-shadow(0px -1px 2px #f4f4f4);
}
.gv_header_block .navi .main-nav > li > .sub-menu > li {
  display: block;
  position: relative;
  border-bottom: 1px dotted #dfdfdf;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li > a {
  display: block;
  padding: 12px 16px;
  line-height: 22px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--primary-Color);
  transition: all 0.45s ease 0s;
  background: transparent;
  border-radius: 0px;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li i.arrow {
  display: none;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li ul {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  box-shadow: 0px 0px 8px 0px #ccc;
  border-radius: 5px;
  min-width: 240px;
  display: none;
  z-index: 11;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li ul > li {
  display: block;
  position: relative;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li ul > li > a {
  display: block;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #553010;
  transition: all 0.45s ease 0s;
  background: transparent;
  border-radius: 5px;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li ul > li:hover > a {
  background: #553010;
  color: #fff;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li ul > li:hover > ul {
  display: block;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li:hover > a {
  background: var(--primary-Color);
  color: #fff;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li:hover > ul {
  display: block;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li:first-child > a {
  border-radius: 2px 2px 0 0;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li:last-child {
  border-bottom: 0;
}
.gv_header_block .navi .main-nav > li > .sub-menu > li:last-child > a {
  border-radius: 0 0 2px 2px;
}
.gv_header_block .navi .main-nav > li:hover > a {
  background: #fff;
  color: var(--primary-Color);
}
.gv_header_block .navi .main-nav > li:hover > .sub-menu {
  display: block;
}
.gv_header_block .navi .main-nav > li.active > a {
  background: #fff;
  color: var(--primary-Color);
}
.gv_header_block .extra {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gv_header_block .extra .search {
  padding-right: 10px;
  position: relative;
}
.gv_header_block .extra .search button {
  border: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
  background: transparent;
}
.gv_header_block .extra .search button img {
  height: 28px;
  width: auto;
}
.gv_header_block .extra .search .search-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 11;
  background: #f6f6f6;
  overflow: hidden;
  border-radius: 0px;
  opacity: 0;
  visibility: hidden;
  z-index: -9;
  display: block;
  transition: all 0.06s ease 0.43s;
}
.gv_header_block .extra .search .search-nav form {
  display: block;
  width: 360px;
  position: relative;
}
.gv_header_block .extra .search .search-nav form input {
  border: 0;
  padding: 10px 10px;
  line-height: 20px;
  font-size: 14px;
  outline: none;
  padding-right: 40px;
  width: 100%;
  background: #f9f9f9;
}
.gv_header_block .extra .search .search-nav form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  outline: none;
  padding: 0;
  color: #000;
}
.gv_header_block .extra .search .search-nav form button i {
  font-size: 16px;
  color: #000;
}
.gv_header_block .extra .search:hover .search-nav {
  opacity: 1;
  visibility: visible;
  z-index: 9;
  right: 0px;
}
.gv_header_block .extra ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_header_block .extra ul > li > a {
  color: #000;
  display: block;
  margin-left: 10px;
}
.gv_header_block .extra ul > li > a img {
  height: 36px;
  width: 36px;
}

/** Banner
--------------------------------------------- */
.gv_banner_block {
  position: relative;
  overflow: hidden;
}
.gv_banner_block .inner .owl-carousel .owl-nav > [class*=owl-] {
  opacity: 0;
  visibility: hidden;
}
.gv_banner_block .inner .owl-carousel .owl-nav > [class*=owl-] > [class*=icon-arrow-] {
  height: 36px;
  width: 24px;
  margin: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.gv_banner_block .inner .owl-carousel .owl-nav .owl-prev {
  left: 20px;
}
.gv_banner_block .inner .owl-carousel .owl-nav .owl-next {
  right: 20px;
}
.gv_banner_block .inner .owl-carousel .owl-dots {
  position: absolute;
  right: 50px;
  bottom: 20px;
  width: auto;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.gv_banner_block .inner .owl-carousel .owl-dots .owl-dot > span {
  margin: 0;
  height: 14px;
  width: 14px;
  transition: all 0.3s ease 0s;
  opacity: 0.6;
  border-radius: 100%;
  background: #fff;
}
.gv_banner_block .inner .owl-carousel .owl-dots .owl-dot.active > span {
  background: #fff;
  opacity: 1;
}
.gv_banner_block .inner .owl-carousel:hover .owl-nav > [class*=owl-] {
  opacity: 1;
  visibility: visible;
}
.gv_banner_block .inner .slider-inner {
  position: relative;
  width: 100%;
}
.gv_banner_block .inner .slider-inner > a {
  display: block;
  height: 650px;
  width: 100%;
  position: relative;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .gv_banner_block .inner .slider-inner > a {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .gv_banner_block .inner .slider-inner > a {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .gv_banner_block .inner .slider-inner > a {
    height: 200px;
  }
}
.gv_banner_block .inner .slider-inner > 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%;
}

/** About
--------------------------------------------- */
.gv_section_about {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-Color);
  color: #fff;
}
.gv_section_about .filter-box {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 36px;
  font-family: var(--primary-Font);
}
.gv_section_about .filter-box form {
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 22px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .gv_section_about .filter-box form {
    border-radius: 12px;
  }
}
.gv_section_about .filter-box form .filx-type {
  flex: 0 0 28%;
  max-width: 28%;
  position: relative;
  padding: 0px 20px 0 72px;
}
@media (max-width: 1023px) {
  .gv_section_about .filter-box form .filx-type {
    flex: 0 0 30%;
    max-width: 30%;
    padding: 0 16px 0 52px;
  }
}
@media (max-width: 767px) {
  .gv_section_about .filter-box form .filx-type {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_section_about .filter-box form .filx-type span {
  height: 18px;
  width: 18px;
  border: 1px solid var(--primary-Color);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
}
@media (max-width: 1023px) {
  .gv_section_about .filter-box form .filx-type span {
    left: 20px;
  }
}
.gv_section_about .filter-box form .filx-type select {
  line-height: 22px;
  padding: 14px 0;
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.gv_section_about .filter-box form .filx-type select option {
  padding: 10px 10px;
}
.gv_section_about .filter-box form .filx-type::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/icx-down.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  height: 13px;
  width: 13px;
  display: block;
}
.gv_section_about .filter-box form .filx-type::after {
  content: "";
  height: 82%;
  width: 1px;
  background: var(--primary-Color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .gv_section_about .filter-box form .filx-type::after {
    height: 0.5px;
    width: auto;
    top: initial;
    bottom: 0;
    right: 16px;
    left: 16px;
    transform: translateY(0);
  }
}
.gv_section_about .filter-box form .filx-search {
  flex: 0 0 46%;
  max-width: 46%;
  position: relative;
  display: flex;
  padding: 0px 16px 0px 50px;
  align-items: center;
}
@media (max-width: 1023px) {
  .gv_section_about .filter-box form .filx-search {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 16px 0 52px;
  }
}
@media (max-width: 767px) {
  .gv_section_about .filter-box form .filx-search {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_section_about .filter-box form .filx-search input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  padding: 14px 0;
  line-height: 22px;
}
.gv_section_about .filter-box form .filx-search i {
  position: absolute;
  height: 20px;
  width: 20px;
  background-image: url("../images/icn-search.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.gv_section_about .filter-box form .filx-action {
  flex: 0 0 26%;
  max-width: 26%;
  position: relative;
}
@media (max-width: 1023px) {
  .gv_section_about .filter-box form .filx-action {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 767px) {
  .gv_section_about .filter-box form .filx-action {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_section_about .filter-box form .filx-action button {
  line-height: 22px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  width: 100%;
  outline: none;
  cursor: pointer;
  border: 0;
  background: var(--second-Color);
  color: #fff;
  border-radius: 22px;
}
@media (max-width: 767px) {
  .gv_section_about .filter-box form .filx-action button {
    border-radius: 12px;
  }
}
.gv_section_about .about-box .head_section .title {
  color: #fff;
}
.gv_section_about .about-box .head_section .sub {
  color: #fff;
}
.gv_section_about .about-box .desc {
  font-size: 16px;
  font-weight: 300;
  text-align: justify;
  line-height: 1.68;
}

/** Project
--------------------------------------------- */
.gv_section_project {
  position: relative;
  overflow: hidden;
}
.gv_section_project .project-nav {
  list-style: none;
  padding: 0 0 15px;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gv_section_project .project-nav > li {
  display: inline-block;
  padding: 5px 15px;
}
@media (max-width: 575px) {
  .gv_section_project .project-nav > li {
    display: inline-block;
    padding: 5px 5px;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
  }
}
.gv_section_project .project-nav > li span {
  cursor: pointer;
  padding: 10px 16px 10px;
  line-height: 20px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
  display: block;
  background: var(--primary-Color);
  color: #fff;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .gv_section_project .project-nav > li span {
    padding: 10px 10px 0px;
    line-height: 20px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
  }
}
.gv_section_project .project-nav > li span:hover {
  background: #035289;
}
.gv_section_project .project-nav > li.active span {
  background: #035289;
}
.gv_section_project .project-tab .tab_pane > .row {
  margin-right: -10px;
  margin-left: -10px;
  align-items: stretch;
}
.gv_section_project .project-tab .tab_pane > .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  min-height: 100%;
}
.gv_section_project .project-tab .project_item {
  padding-top: 16px;
  padding-bottom: 16px;
}
.gv_section_project .project-tab .project_item .project_inner {
  height: 100%;
}

/** Register
--------------------------------------------- */
.gv_section_register {
  position: relative;
  overflow: hidden;
  background: var(--primary-Color);
  color: #fff;
}
.gv_section_register .register-box .head_section .title {
  color: #fff;
}
.gv_section_register .register-box .form-register > .row {
  align-items: center;
}
.gv_section_register .register-box .form-register > .row > [class*=col-] {
  padding-top: 5px;
  padding-bottom: 5px;
}
.gv_section_register .register-box .form-register .form_input input[type=text],
.gv_section_register .register-box .form-register .form_input input[type=tel],
.gv_section_register .register-box .form-register .form_input input[type=email],
.gv_section_register .register-box .form-register .form_input input[type=date],
.gv_section_register .register-box .form-register .form_input select, .gv_section_register .register-box .form-register .form_input textarea {
  outline: none;
  width: 100%;
  border: 0;
  background: #fff;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.4px;
}
.gv_section_register .register-box .form-register .form_input button {
  border: 0;
  outline: none;
  padding: 13px 15px;
  line-height: 20px;
  font-size: 15px;
  width: 100%;
  background: var(--second-Color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

/** Leader
--------------------------------------------- */
.gv_section_leader {
  position: relative;
  overflow: hidden;
  background-color: #553010;
  background-image: url("../images/bg-parttern.png");
  background-repeat: repeat;
  color: #fff;
}
.gv_section_leader .head_section .title {
  color: #fff;
}
.gv_section_leader .leader-box {
  position: relative;
}
.gv_section_leader .leader-box .owl-carousel .owl-nav > [class*=owl-] > [class*=icon-arrow-] {
  height: 36px;
  width: 24px;
  margin: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.gv_section_leader .leader-box .owl-carousel .owl-nav .owl-prev {
  left: 0px;
}
.gv_section_leader .leader-box .owl-carousel .owl-nav .owl-next {
  right: 0px;
}
.gv_section_leader .leader-box .leader_inner .image {
  position: relative;
}
.gv_section_leader .leader-box .leader_inner .image a {
  border: 5px solid #fff;
  display: block;
  height: 134px;
  width: 134px;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
}
.gv_section_leader .leader-box .leader_inner .image a img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.gv_section_leader .leader-box .leader_inner .info {
  position: relative;
  padding-top: 15px;
  text-align: center;
}
.gv_section_leader .leader-box .leader_inner .info h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.gv_section_leader .leader-box .leader_inner .info h3 a {
  color: #fff;
}
.gv_section_leader .leader-box .leader_inner .info .regency {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;
}

/** Library
--------------------------------------------- */
.gv_section_library {
  position: relative;
  overflow: hidden;
}
.gv_section_library .gallery-wrap {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.gv_section_library .gallery-wrap .owl-carousel .owl-stage-outer {
  border-radius: 25px;
}
.gv_section_library .gallery-wrap .owl-carousel .owl-nav > [class*=owl-] > [class*=icon-arrow-] {
  height: 36px;
  width: 24px;
  margin: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.gv_section_library .gallery-wrap .owl-carousel .owl-nav .owl-prev {
  left: 20px;
}
.gv_section_library .gallery-wrap .owl-carousel .owl-nav .owl-next {
  right: 20px;
}
.gv_section_library .gallery-wrap .gallery_inner .image {
  position: relative;
  display: block;
}
.gv_section_library .gallery-wrap .gallery_inner .image a {
  position: relative;
  padding-bottom: 60%;
  display: block;
  background-position: center;
  width: 100%;
}
.gv_section_library .gallery-wrap .gallery_inner .image a img {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gv_section_library .gallery-wrap .gallery_inner .image a h3 {
  position: absolute;
  left: 30px;
  bottom: 20px;
  right: 30px;
  background: rgba(238, 238, 238, 0.58);
  font-size: 16px;
  padding: 20px 20px;
  border-radius: 14px;
  z-index: 3;
  margin-bottom: 0;
  color: #553010;
}
.gv_section_library .video-box > .row {
  margin-right: -20px;
  margin-left: -20px;
}
.gv_section_library .video-box > .row > [class*=col-] {
  padding-right: 20px;
  padding-left: 20px;
}
.gv_section_library .video-box .video-item .inner {
  padding: 20px 0 10px;
}
.gv_section_library .video-box .video-item .inner .image {
  border-radius: 8px;
  overflow: hidden;
}
.gv_section_library .video-box .video-item .inner .image a {
  position: relative;
  padding-bottom: 60%;
  display: block;
  background-position: centeer;
  width: 100%;
}
.gv_section_library .video-box .video-item .inner .image a img {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gv_section_library .video-box .video-item .inner .image a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 4;
}
.gv_section_library .video-box .video-item .inner .image a span i {
  font-size: 30px;
  color: #fff;
  opacity: 0.8;
  padding-left: 3px;
}
.gv_section_library .video-box .video-item .inner .image a h3 {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  background: rgba(85, 48, 16, 0.86);
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  z-index: 3;
  margin-bottom: 0;
  color: #fff;
}

/** News
--------------------------------------------- */
.gv_section_news {
  position: relative;
  overflow: hidden;
}
.gv_section_news .news-wrap > .row [class*=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.gv_section_news .news-wrap .category-box .name {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-Color);
  text-align: center;
  font-weight: 700;
}
.gv_section_news .news-wrap .category-box .special {
  position: relative;
  display: block;
  padding-bottom: 10px;
}
.gv_section_news .news-wrap .category-box .special .box {
  position: relative;
}
.gv_section_news .news-wrap .category-box .special .box .image {
  display: block;
}
.gv_section_news .news-wrap .category-box .special .box .image > a {
  position: relative;
  padding-bottom: 62%;
  display: block;
  width: 100%;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
}
.gv_section_news .news-wrap .category-box .special .box .image > a img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gv_section_news .news-wrap .category-box .special .box .title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(0, 50, 85, 0.86);
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 58px;
}
.gv_section_news .news-wrap .category-box .special .box .title > a {
  color: #fff;
  text-align: center;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gv_section_news .news-wrap .category-box .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_section_news .news-wrap .category-box .list > li {
  padding: 10px 0;
}
.gv_section_news .news-wrap .category-box .list > li .inner {
  display: flex;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--primary-Color);
  border-radius: 10px;
}
.gv_section_news .news-wrap .category-box .list > li .inner .image {
  max-width: 58px;
  min-width: 58px;
}
.gv_section_news .news-wrap .category-box .list > li .inner .image > a {
  position: relative;
  padding-bottom: 100%;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background-position: center;
}
.gv_section_news .news-wrap .category-box .list > li .inner .image > a img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gv_section_news .news-wrap .category-box .list > li .inner .info {
  flex: 1;
  width: 100%;
  padding-left: 12px;
}
.gv_section_news .news-wrap .category-box .list > li .inner .info h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.gv_section_news .news-wrap .category-box .list > li .inner .info h3 a {
  color: var(--primary-Color);
}

/** Partner
--------------------------------------------- */
.gv_section_partner {
  position: relative;
  overflow: hidden;
}
.gv_section_partner .partner-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}
.gv_section_partner .partner-box .partner-inner .image {
  position: relative;
  display: block;
  text-align: center;
}
.gv_section_partner .partner-box .partner-inner .image > a {
  display: inline-block;
  padding: 10px;
  border: 1px solid var(--primary-Color);
}
.gv_section_partner .partner-box .partner-inner .image > a img {
  width: 100%;
  max-width: 130px;
  height: auto;
}

/** Customer
--------------------------------------------- */
.gv_section_customer {
  position: relative;
  overflow: hidden;
}
.gv_section_customer .customer-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.gv_section_customer .customer-wrap .owl-carousel .owl-nav > [class*=owl-] {
  opacity: 1;
  visibility: visible;
}
.gv_section_customer .customer-wrap .owl-carousel .owl-nav > [class*=owl-] > [class*=icon-slide-] {
  height: 36px;
  width: 24px;
  margin: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.gv_section_customer .customer-wrap .owl-carousel .owl-nav .owl-prev {
  left: -50px;
}
.gv_section_customer .customer-wrap .owl-carousel .owl-nav .owl-next {
  right: -50px;
}
.gv_section_customer .customer-wrap .customer-inner {
  padding: 10px;
}
.gv_section_customer .customer-wrap .customer-inner .box {
  background: #f9e7c2;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px #ccc;
  padding: 15px 20px;
}
.gv_section_customer .customer-wrap .customer-inner .box .star {
  padding-bottom: 5px;
}
.gv_section_customer .customer-wrap .customer-inner .box .star span {
  font-size: 15px;
  display: inline-block;
  color: #ffb400;
}
.gv_section_customer .customer-wrap .customer-inner .box .desc {
  font-size: 14px;
  line-height: 1.63;
  display: -webkit-box;
  margin-bottom: 10px;
  height: 63px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gv_section_customer .customer-wrap .customer-inner .box .name h4 {
  font-size: 16px;
  font-weight: 400;
  color: #553010;
  text-align: right;
  margin-bottom: 0;
  padding-right: 20px;
}

@media (max-width: 575px) {
  .gv_section_customer .customer-wrap .owl-carousel .owl-nav .owl-prev {
    left: -10px;
  }
  .gv_section_customer .customer-wrap .owl-carousel .owl-nav .owl-next {
    right: -10px;
  }
}
/** Subcribe
--------------------------------------------- */
.gv_section_subcribe {
  position: relative;
  overflow: hidden;
  background: var(--primary-Color);
  color: #fff;
  border-bottom: 1px solid #fff;
}
.gv_section_subcribe .subcribe-box {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.gv_section_subcribe .subcribe-box > .row {
  align-items: center;
}
.gv_section_subcribe .subcribe-box > .row [class*=col-] {
  padding-top: 5px;
  padding-bottom: 5px;
}
.gv_section_subcribe .subcribe-box .info {
  font-size: 16px;
  position: relative;
}
@media (max-width: 575px) {
  .gv_section_subcribe .subcribe-box .info {
    font-size: 15px;
    position: relative;
  }
}
.gv_section_subcribe .subcribe-box .info h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .gv_section_subcribe .subcribe-box .info h4 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4px;
  }
}
.gv_section_subcribe .subcribe-box .info p {
  margin-bottom: 0;
}
.gv_section_subcribe .subcribe-box .info p span {
  font-weight: 700;
}
@media (max-width: 575px) {
  .gv_section_subcribe .subcribe-box .info p {
    margin-bottom: 0;
  }
  .gv_section_subcribe .subcribe-box .info p span {
    font-weight: 700;
  }
}
.gv_section_subcribe .subcribe-box .subcribe {
  position: relative;
}
.gv_section_subcribe .subcribe-box .subcribe .form-subcribe {
  position: relative;
  background: #fff;
  color: #fff;
  padding: 6px;
  border-radius: 6px;
  padding-right: 110px;
}
.gv_section_subcribe .subcribe-box .subcribe .form-subcribe input {
  border: 0;
  border-radius: 4px;
  background: #fff;
  padding: 6px 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--second-Color);
  width: 100%;
  line-height: 20px;
  outline: none;
}
.gv_section_subcribe .subcribe-box .subcribe .form-subcribe input::-moz-placeholder {
  color: var(--second-Color);
}
.gv_section_subcribe .subcribe-box .subcribe .form-subcribe input::placeholder {
  color: var(--second-Color);
}
.gv_section_subcribe .subcribe-box .subcribe .form-subcribe input::-moz-placeholder {
  color: var(--second-Color);
}
.gv_section_subcribe .subcribe-box .subcribe .form-subcribe button {
  outline: none;
  position: absolute;
  right: 0px;
  background: var(--second-Color);
  padding: 13px 10px;
  line-height: 20px;
  height: 44px;
  width: 120px;
  border-radius: 6px 6px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  top: 0;
  cursor: pointer;
  border: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/** Footer
--------------------------------------------- */
.gv_footer_block {
  position: relative;
  background: var(--primary-Color);
  transition: all 0.45s ease 0s;
  color: #fff;
}
.gv_footer_block .container {
  position: relative;
}
.gv_footer_block .footer-box {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575px) {
  .gv_footer_block .footer-box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gv_footer_block .footer-box > .row {
  align-items: center;
}
.gv_footer_block .footer-box > .row [class*=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.gv_footer_block .footer-box .logo {
  display: block;
}
@media (max-width: 575px) {
  .gv_footer_block .footer-box .logo {
    text-align: center;
    padding-bottom: 10px;
  }
}
.gv_footer_block .footer-box .logo a {
  display: inline-block;
}
.gv_footer_block .footer-box .logo a img {
  height: 68px;
  width: auto;
}
@media (max-width: 575px) {
  .gv_footer_block .footer-box .logo a img {
    height: 65px;
  }
}
.gv_footer_block .footer-box .contact .name {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-align: center;
}
@media (max-width: 575px) {
  .gv_footer_block .footer-box .contact .name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-align: left;
  }
}
.gv_footer_block .footer-box .contact .address {
  margin-bottom: 8px;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 400;
  text-align: justify;
  width: 100%;
}
@media (max-width: 575px) {
  .gv_footer_block .footer-box .contact .address {
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    text-align: left;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.gv_footer_block .footer-box .contact ul.list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0px;
  justify-content: space-between;
}
.gv_footer_block .footer-box .contact ul.list > li {
  display: inline-block;
  padding: 7px 0px;
}
@media (max-width: 575px) {
  .gv_footer_block .footer-box .contact ul.list > li {
    padding: 7px 0px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_footer_block .footer-box .contact ul.list > li span {
  font-size: 15px;
  text-align: center;
  color: #fff;
  font-weight: 400;
}/*# sourceMappingURL=desktop.css.map */