/**
 * HEADING 
 */
.head_taxonomy {
  position: relative;
  font-family: var(--primary-Font);
}
.head_taxonomy .title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.3;
}

.head_single {
  position: relative;
  font-family: var(--primary-Font);
}
.head_single .title {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-Color);
  display: block;
  position: relative;
  padding-bottom: 12px;
  line-height: 1.4;
}
.head_single .title::after {
  content: "";
  height: 2px;
  width: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ccc;
}

.head_box {
  position: relative;
  font-family: var(--primary-Font);
}
.head_box .title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  display: block;
  position: relative;
  padding-bottom: 10px;
}
.head_box .title::after {
  content: "";
  height: 2px;
  width: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--primary-Color);
}

/** Page Latest */
.gv_page_latest {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  background: #f4f4f4;
}
.gv_page_latest .container > .row {
  align-items: stretch;
}
.gv_page_latest .container > .row > [class*=col-] {
  min-height: 100%;
}
.gv_page_latest .nav-blog {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 30px;
  gap: 3px;
}
@media (max-width: 575px) {
  .gv_page_latest .nav-blog {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    justify-content: flex-start;
  }
}
.gv_page_latest .nav-blog > li {
  display: block;
}
.gv_page_latest .nav-blog > li a {
  background: transparent;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-bottom: 2px solid var(--primary-Color);
  display: block;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  position: relative;
}
.gv_page_latest .nav-blog > li a::after {
  content: "";
  height: 10px;
  width: 15px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-Color);
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transition: all 0.3s ease 0s;
}
.gv_page_latest .nav-blog > li:hover a {
  background: var(--primary-Color);
  color: #fff;
}
.gv_page_latest .nav-blog > li:hover a::after {
  opacity: 1;
  visibility: visible;
}
.gv_page_latest .nav-blog > li.active a {
  background: var(--primary-Color);
  color: #fff;
}
.gv_page_latest .nav-blog > li.active a::after {
  opacity: 1;
  visibility: visible;
}
.gv_page_latest .blog-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

/** Post Category */
.gv_post_category {
  position: relative;
  padding: 40px 0px;
  overflow: hidden;
  background: #f4f4f4;
}
.gv_post_category .container > .row {
  align-items: stretch;
}
.gv_post_category .container > .row > [class*=col-] {
  min-height: 100%;
}
.gv_post_category .nav-blog {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 30px;
  gap: 3px;
}
@media (max-width: 575px) {
  .gv_post_category .nav-blog {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    justify-content: flex-start;
  }
}
.gv_post_category .nav-blog > li {
  display: block;
}
.gv_post_category .nav-blog > li a {
  background: transparent;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-bottom: 2px solid var(--primary-Color);
  display: block;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  position: relative;
}
.gv_post_category .nav-blog > li a::after {
  content: "";
  height: 10px;
  width: 15px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-Color);
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transition: all 0.3s ease 0s;
}
.gv_post_category .nav-blog > li:hover a {
  background: var(--primary-Color);
  color: #fff;
}
.gv_post_category .nav-blog > li:hover a::after {
  opacity: 1;
  visibility: visible;
}
.gv_post_category .nav-blog > li.active a {
  background: var(--primary-Color);
  color: #fff;
}
.gv_post_category .nav-blog > li.active a::after {
  opacity: 1;
  visibility: visible;
}
.gv_post_category .post-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

/** Post Archive */
.gv_post_archive {
  position: relative;
  overflow: hidden;
  padding: 24px 0 40px;
  background: #f4f4f4;
}
.gv_post_archive .container > .row {
  align-items: stretch;
}
.gv_post_archive .container > .row > [class*=col-] {
  min-height: 100%;
}
.gv_post_archive .post-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

/** Post Detail */
.gv_post_single {
  position: relative;
  background: #fff;
  padding: 40px 0;
}
.gv_post_single .container > .row {
  align-items: stretch;
}
.gv_post_single .container > .row .col-left {
  min-height: 100%;
}
@media (max-width: 991px) {
  .gv_post_single .container > .row .col-left {
    padding-bottom: 32px;
  }
}
.gv_post_single .container > .row .col-right {
  min-height: 100%;
}
.gv_post_single .content-box .post-related {
  font-family: var(--primary-Font);
  position: relative;
}
.gv_post_single .content-box .post-related .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_post_single .content-box .post-related .list > li {
  position: relative;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
}
.gv_post_single .content-box .post-related .list > li:last-child {
  margin-bottom: 0;
}
.gv_post_single .content-box .post-related .list > li .thumb {
  min-width: 64px;
  max-width: 64px;
}
.gv_post_single .content-box .post-related .list > li .thumb > a {
  display: block;
  padding-bottom: 90%;
  position: relative;
  width: 100%;
}
.gv_post_single .content-box .post-related .list > li .thumb > 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_post_single .content-box .post-related .list > li .name {
  flex: 1;
  padding: 8px;
  padding-left: 16px;
}
.gv_post_single .content-box .post-related .list > li .name a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.gv_post_single .content-box .post-related .list > li .name a:hover {
  color: var(--primary-Color);
}
.gv_post_single .content-box .post-related .list > li .name span {
  font-size: 14px;
  color: #696969;
  font-style: italic;
  display: block;
}

/** SERVICE ----------------------------------------------------------------*/
.gv_service_archive {
  position: relative;
  overflow: hidden;
  padding: 24px 0 40px;
}
.gv_service_archive .container > .row {
  align-items: stretch;
}
.gv_service_archive .container > .row > [class*=col-] {
  min-height: 100%;
}
.gv_service_archive .service-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

.gv_service_detail {
  position: relative;
  padding: 40px 0;
}
.gv_service_detail .container > .row {
  align-items: stretch;
}
.gv_service_detail .container > .row > [class*=col-] {
  min-height: 100%;
}
@media (max-width: 991px) {
  .gv_service_detail .container > .row .col-left {
    padding-bottom: 24px;
  }
}
.gv_service_detail .sidebar-box {
  height: 100%;
}

/** PRODUCE ----------------------------------------------------------------*/
.gv_produce_taxonomy {
  position: relative;
  overflow: hidden;
  padding: 36px 0 48px;
}
.gv_produce_taxonomy .container > .row {
  align-items: stretch;
  margin-left: -12px;
  margin-right: -12px;
}
.gv_produce_taxonomy .container > .row > [class*=col-] {
  min-height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.gv_produce_detail {
  position: relative;
  overflow: hidden;
  padding: 36px 0 48px;
}
@media (max-width: 991px) {
  .gv_produce_detail .container > .row > .col-left {
    padding-bottom: 24px;
  }
}
.gv_produce_detail .content-job .sumary {
  margin-bottom: 30px;
}
.gv_produce_detail .content-job .sumary .thumb span {
  padding-bottom: 70%;
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.gv_produce_detail .content-job .sumary .thumb span img {
  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%;
  height: 100%;
  width: 100%;
}
.gv_produce_detail .content-job .sumary .info {
  padding-top: 20px;
  position: relative;
}
.gv_produce_detail .content-job .sumary .info .param {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.gv_produce_detail .content-job .sumary .info .param > li {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}
.gv_produce_detail .content-job .sumary .info .param > li:last-child {
  margin-bottom: 0;
}
.gv_produce_detail .content-job .sumary .info .param > li svg {
  position: absolute;
  left: 0;
  top: 1px;
  height: 18px;
  width: 18px;
  fill: var(--primary-Color);
}
.gv_produce_detail .content-job article {
  margin-bottom: 24px;
}
.gv_produce_detail .content-job article > .name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}
.gv_produce_detail .content-job .form-regist {
  background: #ffe6e6;
  border: 1px solid var(--primary-Color);
  padding: 30px 30px;
  box-shadow: 0px 0px 10px 0px rgba(129, 129, 129, 0.13);
  border-radius: 12px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .gv_produce_detail .content-job .form-regist {
    padding: 16px;
  }
}
.gv_produce_detail .content-job .form-regist p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 16px;
  text-align: center;
}
.gv_produce_detail .content-job .form-regist .form {
  width: 100%;
  margin: 0 auto;
  max-width: 500px;
}
.gv_produce_detail .content-job .form-regist .form .wpcf7-form .row {
  margin: 0 -8px;
}
.gv_produce_detail .content-job .form-regist .form .wpcf7-form .row > [class*=col-] {
  padding-left: 8px;
  padding-right: 8px;
}
.gv_produce_detail .content-job .form-regist .form .wpcf7-form input[type=text],
.gv_produce_detail .content-job .form-regist .form .wpcf7-form input[type=tel],
.gv_produce_detail .content-job .form-regist .form .wpcf7-form input[type=email],
.gv_produce_detail .content-job .form-regist .form .wpcf7-form input[type=number],
.gv_produce_detail .content-job .form-regist .form .wpcf7-form input[type=date],
.gv_produce_detail .content-job .form-regist .form .wpcf7-form select,
.gv_produce_detail .content-job .form-regist .form .wpcf7-form textarea {
  border: 0;
  background: #fff;
  font-size: 14px;
  border-radius: 5px;
  padding: 10px 16px;
  line-height: 20px;
  width: 100%;
  outline: none;
  margin-bottom: 8px;
  margin-top: 8px;
}
.gv_produce_detail .content-job .form-regist .form .wpcf7-form input.wpcf7-submit {
  width: auto;
  background: darkred;
  padding: 10px 30px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  margin-top: 8px;
}
.gv_produce_detail .content-job .form-regist .form .wpcf7-form .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 0;
}
.gv_produce_detail .content-job .post-related > .row {
  align-items: stretch;
  margin-left: -12px;
  margin-right: -12px;
}
.gv_produce_detail .content-job .post-related > .row > [class*=col-] {
  min-height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
/** LABOR ----------------------------------------------------------------*/
.gv_page_labor {
  position: relative;
  overflow: hidden;
}
.gv_page_labor .block-info {
  padding-top: 50px;
  padding-bottom: 120px;
  position: relative;
}
.gv_page_labor .block-info::after {
  content: "";
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  height: 50px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--primary-Color);
}
.gv_page_labor .block-info .container > .row {
  align-items: center;
  padding: 10px 0;
}
.gv_page_labor .block-info .container > .event-item .col-left {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (min-width: 992px) {
  .gv_page_labor .block-info .container > .event-item .col-left {
    order: 2;
  }
}
.gv_page_labor .block-info .container > .event-item .col-right {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (min-width: 992px) {
  .gv_page_labor .block-info .container > .event-item .col-right {
    order: 1;
  }
}
.gv_page_labor .block-info .head_section {
  margin-bottom: 20px;
}
.gv_page_labor .block-info .image {
  overflow: hidden;
  border-radius: 10px;
}
.gv_page_labor .block-info .image img {
  width: 100%;
  height: auto;
}
.gv_page_labor .block-info .info h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-Color);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.gv_page_labor .block-info .info h4::after {
  content: "";
  height: 2px;
  width: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--second-Color);
}
.gv_page_labor .block-info .info .desc {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}
.gv_page_labor .block-choose {
  background: var(--primary-Color);
  padding-top: 30px;
  padding-bottom: 120px;
  position: relative;
  color: #fff;
}
.gv_page_labor .block-choose::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  height: 70px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #fff;
}
.gv_page_labor .block-choose .container > .row > [class*=col-] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.gv_page_labor .block-choose .head_section {
  margin-bottom: 24px;
}
.gv_page_labor .block-choose .head_section .title {
  color: #fff;
}
.gv_page_labor .block-choose .image {
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
.gv_page_labor .block-choose .image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.gv_page_labor .block-choose .desc {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}
.gv_page_labor .block-choose .desc ul, .gv_page_labor .block-choose .desc ol {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}
.gv_page_labor .block-choose .desc ul > li, .gv_page_labor .block-choose .desc ol > li {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.gv_page_labor .block-choose .desc ul > li:last-child, .gv_page_labor .block-choose .desc ol > li:last-child {
  margin-bottom: 0;
}
.gv_page_labor .block-choose .desc ul > li::before, .gv_page_labor .block-choose .desc ol > li::before {
  content: "";
  background-image: url("../images/check.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 3px;
  position: absolute;
  height: 18px;
  width: 18px;
  filter: brightness(0) invert(1);
  border: 1px solid #fff;
  border-radius: 100%;
}
.gv_page_labor .block-procedure {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 40px 0 60px;
}
.gv_page_labor .block-procedure .container .row {
  align-items: stretch;
  margin: 0 -10px;
}
.gv_page_labor .block-procedure .container .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 100%;
}
.gv_page_labor .block-procedure .container .row .col-gx-5 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 1023px) {
  .gv_page_labor .block-procedure .container .row .col-gx-5 {
    flex: 0 0 33.333334%;
    max-width: 33.333334%;
  }
}
@media (max-width: 767px) {
  .gv_page_labor .block-procedure .container .row .col-gx-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .gv_page_labor .block-procedure .container .row .col-gx-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_page_labor .block-procedure .head_section {
  margin-bottom: 24px;
}
.gv_page_labor .block-procedure .prod-item .box {
  background: #f2f2f2;
  padding: 20px 10px 20px;
  border-radius: 6px;
  box-shadow: 0px 0px 5px 0px rgba(129, 129, 129, 0.13);
  height: 100%;
  position: relative;
}
.gv_page_labor .block-procedure .prod-item .box .number {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.gv_page_labor .block-procedure .prod-item .box .number span {
  width: 54px;
  height: 54px;
  background: var(--primary-Color);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.gv_page_labor .block-procedure .prod-item .box h3 {
  font-size: 15px;
  text-align: center;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}
.gv_page_labor .block-procedure .prod-item .box .desc {
  font-size: 14px;
  line-height: 1.56;
  text-align: center;
}
.gv_page_labor .block-careful {
  padding: 120px 0 50px;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}
.gv_page_labor .block-careful::after {
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  height: 70px;
  width: 100%;
  position: absolute;
  left: 0;
  top: -1px;
  background: #fff;
}
.gv_page_labor .block-careful .container .row {
  align-items: stretch;
  margin: 0 -10px;
}
.gv_page_labor .block-careful .container .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 100%;
}
.gv_page_labor .block-careful .container .row .col-gx-5 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 1023px) {
  .gv_page_labor .block-careful .container .row .col-gx-5 {
    flex: 0 0 33.333334%;
    max-width: 33.333334%;
  }
}
@media (max-width: 767px) {
  .gv_page_labor .block-careful .container .row .col-gx-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .gv_page_labor .block-careful .container .row .col-gx-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_page_labor .block-careful .head_section {
  margin-bottom: 24px;
}
.gv_page_labor .block-careful .careful-item {
  position: relative;
}
.gv_page_labor .block-careful .careful-item .box h3 {
  background: var(--primary-Color);
  color: #fff;
  padding: 10px 16px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
}
.gv_page_labor .block-careful .careful-item .box .desc {
  font-size: 14px;
  line-height: 1.56;
  text-align: justify;
}
.gv_page_labor .block-produce {
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}
.gv_page_labor .block-produce .container .row {
  align-items: stretch;
  margin: 0 -10px;
}
.gv_page_labor .block-produce .container .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 100%;
}
.gv_page_labor .block-produce .container .row .col-gx-5 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 1023px) {
  .gv_page_labor .block-produce .container .row .col-gx-5 {
    flex: 0 0 33.333334%;
    max-width: 33.333334%;
  }
}
@media (max-width: 767px) {
  .gv_page_labor .block-produce .container .row .col-gx-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .gv_page_labor .block-produce .container .row .col-gx-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_page_labor .block-produce .head_section {
  margin-bottom: 24px;
}
.gv_page_labor .block-produce .produce-item .box .icon {
  text-align: center;
  display: block;
  margin-bottom: 24px;
}
.gv_page_labor .block-produce .produce-item .box .icon span img {
  height: 80px;
  width: auto;
}
.gv_page_labor .block-produce .produce-item .box h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-Color);
  text-align: center;
  margin-bottom: 12px;
}
.gv_page_labor .block-produce .produce-item .box .desc {
  font-size: 14px;
  line-height: 1.56;
  text-align: center;
}

/* Meta Line */
.meta-line {
  background: transparent;
  font-size: 15px;
  color: #333;
  font-weight: 300;
  font-family: var(--primary-Font);
  margin-bottom: 24px;
}
.meta-line b {
  font-weight: 600;
}

/** Page Detail */
.gv_page_detail {
  position: relative;
  overflow: hidden;
  padding: 36px 0 60px;
}
/** Page Contact */
.gv_page_contact {
  position: relative;
  overflow: hidden;
  padding: 36px 0 48px;
}
.gv_page_contact .container > .row {
  align-items: stretch;
}
.gv_page_contact .container > .row > [class*=col-] {
  min-height: 100%;
}
@media (max-width: 991px) {
  .gv_page_contact .container > .row .col-left {
    padding-bottom: 24px;
  }
}
.gv_page_contact .contact {
  margin-bottom: 24px;
}
.gv_page_contact .contact .info {
  height: 100%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  padding: 32px;
  display: block;
  position: relative;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .gv_page_contact .contact .info {
    padding: 20px;
  }
}
.gv_page_contact .contact .info > .name {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-Color);
  margin-bottom: 20px;
}
.gv_page_contact .contact .info .desc {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.gv_page_contact .contact .form {
  position: relative;
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  background: var(--primary-Color);
  color: #fff;
}
@media (max-width: 767px) {
  .gv_page_contact .contact .form {
    padding: 20px;
  }
}
.gv_page_contact .contact .form > .name {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.gv_page_contact .contact .form .wpcf7-form .row {
  margin: 0 -8px;
}
.gv_page_contact .contact .form .wpcf7-form .row > [class*=col-] {
  padding-left: 8px;
  padding-right: 8px;
}
.gv_page_contact .contact .form .wpcf7-form input[type=text],
.gv_page_contact .contact .form .wpcf7-form input[type=tel],
.gv_page_contact .contact .form .wpcf7-form input[type=email],
.gv_page_contact .contact .form .wpcf7-form input[type=number],
.gv_page_contact .contact .form .wpcf7-form input[type=date],
.gv_page_contact .contact .form .wpcf7-form select,
.gv_page_contact .contact .form .wpcf7-form textarea {
  border: 0;
  background: #fff;
  font-size: 14px;
  border-radius: 5px;
  padding: 10px 16px;
  line-height: 20px;
  width: 100%;
  outline: none;
  margin-bottom: 8px;
  margin-top: 8px;
}
.gv_page_contact .contact .form .wpcf7-form textarea {
  height: 81px;
}
.gv_page_contact .contact .form .wpcf7-form input.wpcf7-submit {
  width: auto;
  background: darkred;
  padding: 10px 30px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  margin-top: 8px;
}
.gv_page_contact .contact .form .wpcf7-form .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 0;
}
.gv_page_contact .map {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}
.gv_page_contact .map iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}

/**
 * TAGS
 */
.tags {
  margin-bottom: 20px;
  font-family: var(--primary-Font);
  position: relative;
}/*# sourceMappingURL=blog.css.map */