/** HEADER ============================================*/
/** Header Main */
.gv_header_block {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  transition: all 0.3s ease 0s;
  z-index: 99;
  background: rgba(0, 0, 0, 0.65);
  padding: 0px 0;
}
@media (max-width: 1023px) {
  .gv_header_block {
    display: none;
  }
}
.gv_header_block .container .flex {
  transition: all 0.3s ease 0s;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.gv_header_block .container .flex .head-left {
  max-width: 16%;
  min-width: 150px;
  flex: 0 0 16%;
  position: relative;
}
.gv_header_block .container .flex .head-right {
  max-width: 84%;
  flex: 0 0 84%;
}
.gv_header_block .logo {
  position: absolute;
  height: 150px;
  width: 150px;
  padding: 0px;
  transition: all 0.3s ease 0s;
  background: #fff;
  z-index: 4;
  top: 0;
  left: 0;
}
.gv_header_block .logo a {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease 0s;
}
.gv_header_block .logo a img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.gv_header_block .navi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.gv_header_block .navi .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 36px;
}
@media (max-width: 1399px) {
  .gv_header_block .navi .menu {
    gap: 20px;
  }
}
.gv_header_block .navi .menu > li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 20px 0;
}
.gv_header_block .navi .menu > li > a {
  display: block;
  padding: 10px 0;
  line-height: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  transition: all 0.3s ease 0s;
}
.gv_header_block .navi .menu > li > .sub-menu {
  position: absolute;
  z-index: 99;
  background: #FFF;
  top: 140%;
  left: -12px;
  width: 240px;
  border-radius: 0 0 6px 6px;
  color: #000;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}
.gv_header_block .navi .menu > li > .sub-menu > li {
  display: block;
  position: relative;
  border-bottom: 1px dotted #dfdfdf;
}
.gv_header_block .navi .menu > li > .sub-menu > li:last-child {
  border-bottom: 0;
}
.gv_header_block .navi .menu > li > .sub-menu > li > a {
  font-size: 15px;
  padding: 10px 25px;
  display: block;
  color: #333;
  line-height: 20px;
  font-weight: 400;
}
.gv_header_block .navi .menu > li > .sub-menu > li > a:hover {
  color: var(--primary-Color);
}
.gv_header_block .navi .menu > li > .sub-menu > li ul {
  position: absolute;
  z-index: 99;
  background: #FFF;
  top: 0;
  left: 100%;
  width: 240px;
  border-radius: 6px;
  color: #000;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
.gv_header_block .navi .menu > li > .sub-menu > li ul > li {
  display: block;
  position: relative;
}
.gv_header_block .navi .menu > li > .sub-menu > li ul > li > a {
  font-size: 14px;
  padding: 8px 25px;
  display: block;
  color: #333;
  line-height: 20px;
  font-weight: 400;
}
.gv_header_block .navi .menu > li > .sub-menu > li ul > li > a:hover {
  color: var(--primary-Color);
}
.gv_header_block .navi .menu > li > .sub-menu > li ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.gv_header_block .navi .menu > li > .sub-menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.gv_header_block .navi .menu > li:hover::before {
  opacity: 1;
  visibility: visible;
}
.gv_header_block .navi .menu > li:hover > a {
  font-weight: 600;
  color: var(--primary-Color);
}
.gv_header_block .navi .menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.gv_header_block .navi .menu > li.active::before,
.gv_header_block .navi .menu > li.current-menu-item::before,
.gv_header_block .navi .menu > li.current_page_item::before,
.gv_header_block .navi .menu > li.current-menu-ancestor::before,
.gv_header_block .navi .menu > li.current_page_parent::before,
.gv_header_block .navi .menu > li.current_page_ancestor::before {
  opacity: 1;
  visibility: visible;
}
.gv_header_block .navi .menu > li.menu-item-has-children::after {
  height: 6px;
  width: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  content: "";
  position: relative;
  display: block;
  margin-left: 6px;
  top: 2px;
}
.gv_header_block .navi .menu > li.menu-item-has-children:hover::after {
  border-top-color: var(--primary-Color);
}
.gv_header_block .navi .search {
  position: relative;
  display: block;
  padding: 20px 0;
}
.gv_header_block .navi .search > button {
  background: var(--second-Color);
  border: 0;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gv_header_block .navi .search > button svg {
  height: 20px;
  width: 20px;
  fill: #fff;
}
.gv_header_block .navi .search form {
  position: absolute;
  top: 100%;
  display: none;
  background: #fff;
  width: 360px;
  right: 0;
  padding: 6px;
  padding-right: 40px;
}
.gv_header_block .navi .search form input {
  width: 100%;
  border: 0;
  line-height: 20px;
  background: transparent;
  font-size: 15px;
  color: #000;
  font-weight: 400;
  outline: none;
  padding: 8px 16px;
}
.gv_header_block .navi .search form > button {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #030f33;
  border: 0;
  outline: none;
  position: absolute;
  top: 6px;
  right: 6px;
}
.gv_header_block .navi .search form > button svg {
  fill: #fff;
}

.gv_header_block.fixed {
  position: fixed;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}
.gv_header_block.fixed .logo {
  top: 5px;
  height: 60px;
  width: 60px;
  padding: 0;
}
.gv_header_block.fixed .navi .menu > li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 15px 0;
}
.gv_header_block.fixed .navi .search {
  padding: 15px 0;
}

/** Header Mobile */
.gv_mobile_block {
  position: relative;
  display: none;
  left: 0;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  background: #fff;
  z-index: 999;
}
@media (max-width: 1023px) {
  .gv_mobile_block {
    display: block;
  }
}
.gv_mobile_block .container .flex {
  transition: all 0.3s ease 0s;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.gv_mobile_block .container .flex .head-left {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding-left: 100px;
}
.gv_mobile_block .container .flex .head-right {
  min-height: 100%;
}
.gv_mobile_block .logo {
  position: absolute;
  height: 100px;
  width: 100px;
  padding: 0px;
  transition: all 0.3s ease 0s;
  background: #fff;
  z-index: 4;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.gv_mobile_block .logo a {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease 0s;
}
.gv_mobile_block .logo a img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.gv_mobile_block .name h2 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  margin-left: 16px;
  color: #000;
}
.gv_mobile_block .menu {
  position: relative;
  padding: 12px 0;
  display: flex;
  justify-content: flex-end;
}
.gv_mobile_block .menu button {
  outline: none;
  padding: 0;
  margin: 0;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 6px;
  border: 2px solid var(--primary-Color);
}
.gv_mobile_block .menu button svg {
  fill: var(--primary-Color);
  height: 21px;
  width: 21px;
}

.gv_mobile_block.fixed {
  position: fixed;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.26);
}
.gv_mobile_block.fixed .container .head-left {
  padding-left: 60px;
}
.gv_mobile_block.fixed .logo {
  top: 0px;
  height: 60px;
  width: 60px;
  padding: 0;
  box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.16);
}

/** Menu Mobile */
.gv_menu_block {
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.5s ease 0s;
  z-index: 9999;
  width: 90%;
  max-width: 380px;
  background: var(--primary-Color);
  height: 100vh;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
  overflow-x: hidden;
  transform: translateX(-105%);
}
.gv_menu_block .inner {
  position: relative;
}
.gv_menu_block .inner button {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  height: 36px;
  width: 36px;
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 18px;
}
.gv_menu_block .inner button i {
  display: block;
  height: 16px;
  width: 16px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.gv_menu_block .inner .name {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 20px;
  padding-left: 16px;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  padding-top: 20px;
  height: 72px;
}
.gv_menu_block .inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_menu_block .inner > ul.menu-nav {
  position: relative;
}
.gv_menu_block .inner > ul.menu-nav > li {
  display: block;
  position: relative;
  padding: 0px;
}
.gv_menu_block .inner > ul.menu-nav > li > a {
  display: block;
  position: relative;
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-bottom: 1px solid #d75961;
}
.gv_menu_block .inner > ul.menu-nav > li > a i {
  height: 18px;
  width: 18px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.gv_menu_block .inner > ul.menu-nav > li i.arrow {
  position: absolute;
  height: 40px;
  width: 40px;
  transition: all 0.3s ease-in-out;
  right: 0px;
  top: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
.gv_menu_block .inner > ul.menu-nav > li ul {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  display: none;
  transition: all 0.3s;
  padding: 0px 0;
}
.gv_menu_block .inner > ul.menu-nav > li ul > li {
  display: block;
  position: relative;
  padding: 0 0px;
}
.gv_menu_block .inner > ul.menu-nav > li ul > li > a {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  padding: 10px 16px;
  position: relative;
  display: block;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #d75961;
}
.gv_menu_block .inner > ul.menu-nav > li ul > li > a:hover {
  color: var(--primary-Color);
}
.gv_menu_block .inner > ul.menu-nav > li ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.gv_menu_block .inner > ul.menu-nav > li ul > li:last-child > a {
  border-bottom: 0;
}
.gv_menu_block .inner > ul.menu-nav > li.show > i.arrow {
  transform: rotate(180deg);
}
.gv_menu_block .inner > ul.menu-nav > li:hover > a {
  color: var(--second-Color);
}
.gv_menu_block .inner > ul.menu-nav > li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.gv_menu_block .inner > ul.menu-nav > li:last-child > a {
  border-bottom: 0;
}

.gv_menu_block.open {
  transform: translateX(0);
}

/** FOOTER ============================================*/
.gv_footer_block {
  position: relative;
  overflow: hidden;
  padding: 36px 0 16px;
  background: var(--third-Color);
  color: #fff;
}
@media (max-width: 767px) {
  .gv_footer_block {
    padding: 36px 0;
  }
}
.gv_footer_block .container > .flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.gv_footer_block .container > .flex > [class*=flx-] {
  padding-left: 16px;
  padding-right: 16px;
}
.gv_footer_block .container > .flex .flx-left {
  flex: 0 0 38%;
  max-width: 38%;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 991px) {
  .gv_footer_block .container > .flex .flx-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_footer_block .container > .flex .flx-right {
  flex: 0 0 62%;
  max-width: 62%;
}
@media (max-width: 991px) {
  .gv_footer_block .container > .flex .flx-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_footer_block .container > .flex .flx-right > .row > [class*=col-] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.gv_footer_block .container > .flex .flx-right > .row .col-left {
  flex: 0 0 30%;
  max-width: 30%;
}
@media (max-width: 991px) {
  .gv_footer_block .container > .flex .flx-right > .row .col-left {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .gv_footer_block .container > .flex .flx-right > .row .col-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_footer_block .container > .flex .flx-right > .row .col-right {
  flex: 0 0 40%;
  max-width: 40%;
}
@media (max-width: 991px) {
  .gv_footer_block .container > .flex .flx-right > .row .col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .gv_footer_block .container > .flex .flx-right > .row .col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_footer_block .name {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .gv_footer_block .name {
    font-size: 23px;
  }
}
.gv_footer_block .head_footer {
  padding-bottom: 16px;
}
.gv_footer_block .contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .contact > li {
  display: block;
  position: relative;
  font-size: 15px;
  margin-bottom: 16px;
}
.gv_footer_block .contact > li:last-child {
  margin-bottom: 0;
}
.gv_footer_block .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .menu > li {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.gv_footer_block .menu > li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
}
.gv_footer_block .menu > li a:hover {
  text-decoration: underline;
}
.gv_footer_block .menu > li:last-child {
  margin-bottom: 0;
}
.gv_footer_block .social {
  list-style: none;
  padding: 0;
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}
.gv_footer_block .social > li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px 10px;
}
.gv_footer_block .social > li > a {
  display: flex;
  color: #fff;
  align-items: center;
  border: 1px solid #888888;
  border-radius: 6px;
  padding: 4px;
}
.gv_footer_block .social > li > a .icon {
  min-width: 32px;
  max-width: 32px;
}
.gv_footer_block .social > li > a .icon img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
}
.gv_footer_block .social > li > a .text {
  flex: 1;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 600;
}
.gv_footer_block .map {
  margin-top: 16px;
}
.gv_footer_block .map a {
  display: inline-flex;
  border: 1px solid #999;
  border-radius: 5px;
  padding: 4px 10px 4px 5px;
  color: #fff;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}
.gv_footer_block .map a svg {
  height: 22px;
  width: 22px;
  fill: #fff;
}
.gv_footer_block .copy {
  margin-top: 48px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 400;
}
.gv_footer_block .copy a {
  color: #fff;
}

/** HEADING ============================================*/
.head_section {
  position: relative;
  font-family: var(--primary-Font);
}
.head_section .title {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--third-Color);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .head_section .title {
    font-size: 26px;
  }
}
.head_section .text {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

.head_block {
  position: relative;
  font-family: "Oswald", sans-serif;
}
.head_block .sub {
  text-transform: uppercase;
  color: var(--third-Color);
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}
.head_block .title {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-Color);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .head_block .title {
    font-size: 30px;
    letter-spacing: 0.5px;
  }
}
.head_block .slogan {
  margin-top: 8px;
  text-transform: uppercase;
  color: var(--third-Color);
  font-size: 20px;
  font-weight: 500;
}

.head_panel {
  position: relative;
  font-family: "Oswald", sans-serif;
}
.head_panel .title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-Color);
  margin-bottom: 0;
  padding-right: 60px;
}
.head_panel .title span {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  padding-right: 18px;
  border-bottom: 2px solid var(--third-Color);
}
.head_panel .title span::after {
  content: "";
  height: 14px;
  width: 8px;
  position: absolute;
  top: 11px;
  background: var(--third-Color);
  right: 0px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 575px) {
  .head_panel .title {
    font-size: 23px;
  }
}
.head_panel .more {
  font-family: var(--primary-Font);
  position: absolute;
  background: var(--second-Color);
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 40px;
  line-height: 20px;
  top: 2px;
  right: 0;
  color: #fff;
  gap: 10px;
}
@media (max-width: 767px) {
  .head_panel .more {
    display: none;
  }
}
.head_panel .more i {
  height: 10px;
  width: 10px;
  background-image: url("../images/svg/ica-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.head_blog {
  position: relative;
  font-family: var(--primary-Font);
}
.head_blog .title {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  line-height: 1.32;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .head_blog .title {
    font-size: 30px;
  }
}

.head_footer {
  position: relative;
  font-family: var(--primary-Font);
}
.head_footer .title {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #fff;
  position: relative;
}
.head_footer .title::after {
  height: 3px;
  width: 40px;
  position: absolute;
  background: #fff;
  bottom: -1px;
  left: 0;
  content: "";
}

/** BANNER ============================================*/
.gv_banner_blog {
  position: relative;
}
.gv_banner_blog .image {
  position: relative;
}
.gv_banner_blog .image img {
  width: 100%;
  height: auto;
}

.gv_breadcrumb_block {
  position: relative;
  background: #ededed;
  padding: 12px 0;
}
.gv_breadcrumb_block .breadcrumb-nav {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.gv_breadcrumb_block .breadcrumb-nav span,
.gv_breadcrumb_block .breadcrumb-nav a {
  font-family: var(--primary-Font);
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: normal;
}
.gv_breadcrumb_block .breadcrumb-nav i {
  height: 10px;
  width: 10px;
  background: 0;
  border-radius: 100%;
  display: inline-block;
  margin: 0 12px;
  background-image: url("../images/svg/icn-right.svg");
  filter: brightness(0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gv_breadcrumb_block .breadcrumb-nav a {
  font-weight: 500;
  color: #000;
}
.gv_breadcrumb_block .breadcrumb-nav a:hover {
  color: var(--second-Color);
}

/** CONTENT ============================================*/
/** Desc */
.desc {
  font-family: var(--primary-Font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  word-wrap: break-word;
}
.desc h1 {
  font-size: 1.9em;
}
.desc h2 {
  font-size: 1.65em;
}
.desc h3 {
  font-size: 1.45em;
}
.desc h4 {
  font-size: 1.2em;
}
.desc h5 {
  font-size: 1.05em;
}
.desc h6 {
  font-size: 1em;
}
.desc img {
  max-width: 100%;
  height: auto;
}
.desc .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
}
.desc .aligncenter img {
  max-width: 100%;
  height: auto;
}
.desc .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
}
.desc .alignleft img {
  max-width: 100%;
  height: auto;
}
.desc .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.desc .alignright img {
  max-width: 100%;
  height: auto;
}

/** Entry Content */
.entry-content {
  font-family: var(--primary-Font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  word-wrap: break-word;
}
.entry-content a {
  color: var(--primary-Color);
}
.entry-content a:hover {
  text-decoration: underline;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  margin-bottom: 1rem;
}
.entry-content h1 {
  font-size: 1.65em;
}
.entry-content h2 {
  font-size: 1.4em;
}
.entry-content h3 {
  font-size: 1.3em;
}
.entry-content h4 {
  font-size: 1.2em;
}
.entry-content h5 {
  font-size: 1.25em;
}
.entry-content h6 {
  font-size: 1em;
}
.entry-content iframe {
  max-width: 100%;
}
.entry-content object {
  max-width: 100%;
}
.entry-content ol, .entry-content ul {
  padding-left: 16px;
  margin-bottom: 1rem;
}
.entry-content table {
  width: 100%;
  margin-bottom: 16px;
}
.entry-content table tr {
  border: 1px solid #dedede;
}
.entry-content table tr th {
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--primary-Color);
  color: #fff;
}
.entry-content table tr td {
  padding: 6px 12px;
  color: #000;
}
.entry-content table tr td:last-child {
  text-align: right;
}
.entry-content table tr:nth-child(even) td {
  background: #f6f6f6;
}
.entry-content .aligncenter {
  max-width: 100%;
  float: none;
  margin: auto;
  display: block;
}
.entry-content .aligncenter img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft {
  max-width: 100%;
  float: left;
  display: inline-block;
  margin-right: 15px;
}
.entry-content .alignleft img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignright {
  max-width: 100%;
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.entry-content .alignright img {
  max-width: 100%;
  height: auto;
}
.entry-content .wp-caption-text {
  background: #fdfdfd;
  text-align: center;
  margin-bottom: 13px;
  font-style: italic;
  padding: 6px;
  font-size: 13px;
}

/** LOOP ============================================*/
.product_inner {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  transition: all 0.6s ease 0s;
  z-index: 2;
}
.product_inner .image {
  position: relative;
  border: 1px solid #ededed;
  overflow: hidden;
  border-radius: 4px;
}
.product_inner .image .video {
  position: relative;
}
.product_inner .image .video .video-play {
  position: relative;
  padding-bottom: 100%;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.product_inner .image .video .video-play picture 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%;
}
.product_inner .image .video .video-play iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.product_inner .image .video .video-play > span {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.product_inner .image .video .video-play > span i {
  height: 26px;
  width: 16px;
  display: block;
  background: var(--primary-Color);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin-left: 2px;
}
.product_inner .image a {
  display: block;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  background-position: center;
  overflow: hidden;
  border-radius: 4px;
}
.product_inner .image a 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%;
  transition: all 0.3s ease 0s;
}
.product_inner .image a:hover img {
  transform: scale(1.11);
}
.product_inner .info {
  padding-top: 16px;
  position: relative;
  display: block;
}
.product_inner .info .title {
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.product_inner .info .title a {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 45px;
  transition: all 0.6s ease 0s;
}
.product_inner .info .price {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 8px;
}
.product_inner .info .price span {
  display: inline-block;
  color: var(--primary-Color);
  font-size: 15px;
  font-weight: 600;
}
.product_inner .info .price .pc-older {
  color: #888;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 400;
}
.product_inner .info .buy {
  display: flex;
  justify-content: space-between;
  margin: 0 -8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .product_inner .info .buy {
    gap: 6px;
  }
}
.product_inner .info .buy .bc-left, .product_inner .info .buy .bc-right {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .product_inner .info .buy .bc-left, .product_inner .info .buy .bc-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.product_inner .info .buy a {
  padding: 6px 16px;
  font-size: 14px;
  border: 0;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--third-Color);
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  line-height: 18px;
  transition: all 0.6s ease 0s;
}
.product_inner .info .buy a i {
  margin-right: 4px;
  height: 12px;
  width: 12px;
  background-image: url("../images/svg/icn-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.product_inner .info .buy a:hover {
  background: var(--second-Color);
}
.product_inner .info .buy a.b-phone {
  background: var(--primary-Color);
}
.product_inner .info .buy a.b-phone i {
  background-image: url("../images/svg/ict-phone.svg");
}

.post_inner {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.post_inner .image {
  position: relative;
  display: block;
  border-bottom: 3px solid var(--second-Color);
}
.post_inner .image > a {
  position: relative;
  padding-bottom: 60%;
  width: 100%;
  display: block;
  background-position: center;
  overflow: hidden;
}
.post_inner .image > a img {
  position: absolute;
  top: 0;
  left: 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%;
  transition: all 0.3s ease 0s;
}
.post_inner .image > a:hover img {
  transform: scale(1.11);
}
.post_inner .info {
  padding-top: 16px;
  z-index: 3;
  position: relative;
}
.post_inner .info .title {
  line-height: 1.4;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  display: block;
}
.post_inner .info .title a {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 43px;
  transition: all 0.6s ease 0s;
}
.post_inner .info .meta {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  position: relative;
  padding-left: 18px;
  display: inline-block;
  transition: 0.6s;
  z-index: 1;
  margin-bottom: 0.75rem;
}
.post_inner .info .meta::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: var(--second-Color);
  left: 0;
  top: 6px;
  border-radius: 30px;
}
.post_inner .info .more-x {
  display: block;
}
.post_inner .info .more-x a {
  padding: 6px 16px;
  font-size: 14px;
  border: 0;
  display: inline-flex;
  align-items: center;
  background: var(--primary-Color);
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  line-height: 18px;
  transition: all 0.6s ease 0s;
}
.post_inner .info .more-x a i {
  margin-right: 8px;
  position: relative;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #fff;
}
.post_inner .info .more-x a i::before {
  content: "";
  height: 9px;
  width: 9px;
  background-image: url(../images/svg/icx-plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.post_inner .info .more-x a:hover {
  background: var(--second-Color);
}

.blog_inner {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--third-Color);
}
.blog_inner .image {
  position: relative;
  display: block;
  border-bottom: 3px solid #f6f6f6;
}
.blog_inner .image > a {
  position: relative;
  padding-bottom: 60%;
  width: 100%;
  display: block;
  background-position: center;
  overflow: hidden;
}
.blog_inner .image > a img {
  position: absolute;
  top: 0;
  left: 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%;
  transition: all 0.3s ease 0s;
}
.blog_inner .image > a:hover img {
  transform: scale(1.11);
}
.blog_inner .info {
  padding: 12px;
  z-index: 3;
  position: relative;
}
.blog_inner .info .title {
  line-height: 1.4;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  display: block;
}
.blog_inner .info .title a {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 43px;
  transition: all 0.6s ease 0s;
}
.blog_inner .info .desc {
  font-size: 14px;
  line-height: 1.52;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
  color: #888;
  margin-bottom: 0.45rem;
}
.blog_inner .info .meta {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  position: relative;
  padding-left: 14px;
  display: inline-block;
  transition: 0.6s;
  z-index: 1;
  margin-bottom: 0.75rem;
}
.blog_inner .info .meta::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 4px;
  background-color: var(--primary-Color);
  left: 0;
  top: 6px;
}
.blog_inner .info .more-x {
  display: block;
}
.blog_inner .info .more-x a {
  padding: 6px 16px;
  font-size: 14px;
  border: 0;
  display: inline-flex;
  align-items: center;
  background: var(--primary-Color);
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  line-height: 18px;
  transition: all 0.6s ease 0s;
}
.blog_inner .info .more-x a i {
  margin-right: 8px;
  position: relative;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #fff;
}
.blog_inner .info .more-x a i::before {
  content: "";
  height: 9px;
  width: 9px;
  background-image: url(../images/svg/icx-plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.blog_inner .info .more-x a:hover {
  background: var(--second-Color);
}

.project_inner {
  position: relative;
  padding: 0;
}
.project_inner .image {
  position: relative;
  display: block;
  z-index: 2;
  border: 2px solid var(--third-Color);
  border-radius: 10px;
  overflow: hidden;
}
.project_inner .image > a {
  position: relative;
  padding-bottom: 60%;
  width: 100%;
  display: block;
  background-position: center;
  overflow: hidden;
}
.project_inner .image > a img {
  position: absolute;
  top: 0;
  left: 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%;
  transition: all 0.3s ease 0s;
}
.project_inner .image > a:hover img {
  transform: scale(1.11);
}
.project_inner .info {
  padding-top: 16px;
  z-index: 3;
  position: relative;
}
.project_inner .info .title {
  line-height: 1.4;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  display: block;
}
.project_inner .info .title a {
  color: #000;
}

/** Paginate Nav */
.paginate-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.paginate-nav ul > li {
  display: inline-block;
  position: relative;
  padding: 0 4px;
}
.paginate-nav ul > li span, .paginate-nav ul > li a {
  height: 40px;
  width: 40px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  font-weight: 600;
}
.paginate-nav ul > li span i, .paginate-nav ul > li a i {
  position: relative;
  width: 16px;
  height: 9px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.paginate-nav ul > li a.prev i {
  background-image: url("../images/svg/ick-prev.svg");
}
.paginate-nav ul > li a.next i {
  background-image: url("../images/svg/ick-next.svg");
}
.paginate-nav ul > li span.current {
  background: var(--primary-Color);
  color: #fff;
}
.paginate-nav ul li.prv-link a i, .paginate-nav ul li.prv-link span i {
  background-image: url("../images/svg/ick-prev.svg");
}
.paginate-nav ul li.nxt-link a i, .paginate-nav ul li.nxt-link span i {
  background-image: url("../images/svg/ick-next.svg");
}
.paginate-nav ul li.active a, .paginate-nav ul li.active span {
  background: #008CA5;
  color: #fff;
}

/** Paginav Product */
.woocommerce nav.woocommerce-pagination ul {
  display: flex !important;
  flex-wrap: wrap;
  border: 0 !important;
  margin: 0 !important;
  white-space: unset !important;
  justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul > li {
  border: 0 !important;
  padding: 0 4px !important;
  float: none !important;
}
.woocommerce nav.woocommerce-pagination ul > li span, .woocommerce nav.woocommerce-pagination ul > li a {
  height: 40px;
  width: 40px;
  background: #f0f0f0 !important;
  border-radius: 8px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #000 !important;
  font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul > li span i, .woocommerce nav.woocommerce-pagination ul > li a i {
  position: relative;
  width: 16px;
  height: 9px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.woocommerce nav.woocommerce-pagination ul > li span:hover, .woocommerce nav.woocommerce-pagination ul > li a:hover {
  background: var(--primary-Color) !important;
  color: #fff !important;
}
.woocommerce nav.woocommerce-pagination ul > li a.prev i {
  background-image: url("../images/svg/ick-prev.svg");
}
.woocommerce nav.woocommerce-pagination ul > li a.next i {
  background-image: url("../images/svg/ick-next.svg");
}
.woocommerce nav.woocommerce-pagination ul > li span.current {
  background: var(--primary-Color) !important;
  color: #fff !important;
}

/** COPYRIGHT ============================================*/
.gv_copyright_box {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.gv_copyright_box .container .divide {
  border-top: 1px solid #D9D9D9;
  padding-bottom: 20px;
}
.gv_copyright_box .container .row {
  align-items: center;
}
.gv_copyright_box .copy {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 767px) {
  .gv_copyright_box .copy {
    text-align: center;
    padding-bottom: 12px;
  }
}
.gv_copyright_box .social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  .gv_copyright_box .social {
    justify-content: center;
  }
}
.gv_copyright_box .social a {
  display: block;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .gv_copyright_box .social a {
    margin: 0 10px;
  }
}
.gv_copyright_box .social a img {
  height: 26px;
  width: 26px;
}/*# sourceMappingURL=style.css.map */