@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
/** HEADER Desktop */
.gv_header_block {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all 0.5s ease;
  background: #FFF;
  color: #000;
  font-family: var(--primary-Font);
  padding: 0px;
}
@media (max-width: 991px) {
  .gv_header_block {
    display: none;
  }
}
.gv_header_block .container > .row {
  align-items: center;
}
.gv_header_block .container > .row .head-right {
  display: flex;
  justify-content: flex-end;
}
.gv_header_block .head-logo {
  display: flex;
  align-items: center;
}
.gv_header_block .head-logo .site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 114px;
  width: 114px;
  background: #000;
  margin-right: 20px;
}
.gv_header_block .head-logo .site-logo img {
  height: 99px;
  width: auto;
}
.gv_header_block .head-logo .site-name h2 {
  text-transform: uppercase;
  margin-bottom: 3px;
  margin-top: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #c4161c;
}
.gv_header_block .head-logo .site-name p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  display: block;
}
.gv_header_block .head-logo .site-name span {
  font-size: 15px;
  display: block;
}
.gv_header_block .hotline-bx .phone {
  display: block;
  margin-bottom: 10px;
}
.gv_header_block .hotline-bx .phone span {
  display: block;
  width: 100%;
  padding: 8px 15px;
  background: #c4161c;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  border-bottom: 2px solid #23282d;
}
.gv_header_block .hotline-bx .social {
  display: flex;
  align-items: center;
}
.gv_header_block .hotline-bx .social a {
  display: block;
  margin-right: 10px;
}
.gv_header_block .hotline-bx .social a img {
  height: 32px;
  width: auto;
}
.gv_header_block .hotline-bx .social span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000;
  text-transform: uppercase;
}

/** HEADER Mobile */
.gv_mobile_block {
  position: relative;
  width: 100%;
  left: 0;
  font-family: var(--primary-Font);
  right: 0;
  transition: all 0.5s ease;
  background: #fff;
  color: #000;
  padding: 0px;
  display: none;
  box-shadow: 0px 0px 4px 0px #999;
}
@media (max-width: 991px) {
  .gv_mobile_block {
    display: block;
  }
}
.gv_mobile_block .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.gv_mobile_block .flex .head-logo {
  position: relative;
  text-align: center;
}
.gv_mobile_block .flex .head-logo > a {
  display: inline-block;
  background: #000;
  padding: 10px;
}
.gv_mobile_block .flex .head-logo > a img {
  height: 50px;
  width: auto;
}
.gv_mobile_block .flex .button-menu {
  display: block;
}
.gv_mobile_block .flex .button-menu .bars {
  width: 38px;
  display: flex;
  cursor: pointer;
  background: var(--primary-Color);
  padding: 10px 8px;
  height: 38px;
  border-radius: 6px;
  flex-direction: column;
  justify-content: space-between;
}
.gv_mobile_block .flex .button-menu .bars i.line {
  height: 2px;
  width: 100%;
  display: block;
  background: #fff;
}
.gv_mobile_block .flex .phone-call a {
  display: inline-block;
}
.gv_mobile_block .flex .phone-call a img {
  height: 40px;
  width: 40px;
}

/** NAVIGATION */
.gv_navigation_block {
  position: relative;
  background: var(--primary-Color);
  color: #fff;
  font-family: var(--primary-Font);
}
@media (max-width: 991px) {
  .gv_navigation_block {
    display: none;
  }
}
.gv_navigation_block .nav_primary {
  position: relative;
  display: flex;
  align-items: center;
}
.gv_navigation_block .nav_primary .mega_nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.gv_navigation_block .nav_primary .mega_nav > li {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0px 0;
  transition: all 0.3s ease 0s;
  background: transparent;
}
.gv_navigation_block .nav_primary .mega_nav > li > a {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  line-height: 20px;
  position: relative;
  padding: 15px 15px;
  color: #FFF;
  transition: all 0.3s ease 0s;
  background: transparent;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu {
  position: absolute;
  left: 0;
  padding: 0px;
  margin: 0;
  list-style: none;
  top: 150%;
  min-width: 240px;
  background: #000;
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: all 0.4s ease 0s;
  z-index: -2;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li {
  display: block;
  position: relative;
  padding: 0 0px;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li > a {
  padding: 10px 15px;
  display: block;
  line-height: 20px;
  text-transform: uppercase;
  border-bottom: 1px dotted #ececec;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease 0s;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li > a:hover {
  background: var(--primary-Color);
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li ul {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 240px;
  background: #000;
  display: none;
  z-index: 9;
  margin: 0;
  list-style: none;
  padding: 0px;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li ul > li {
  display: block;
  position: relative;
  padding: 0 0px;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li ul > li > a {
  padding: 10px 15px;
  display: block;
  border-bottom: 1px dotted #ececec;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li ul > li > a:hover {
  background: var(--primary-Color);
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li ul > li:last-child > a {
  border-bottom: 0;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li ul > li:hover > ul {
  display: block;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li:last-child > a {
  border-bottom: 0;
}
.gv_navigation_block .nav_primary .mega_nav > li > ul.sub-menu > li:hover > ul {
  display: block;
}
.gv_navigation_block .nav_primary .mega_nav > li:hover {
  background: #000;
}
.gv_navigation_block .nav_primary .mega_nav > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 9;
}
.gv_navigation_block .nav_primary .mega_nav > li.menu-item-has-children > a {
  padding-right: 8px;
}
.gv_navigation_block .nav_primary .mega_nav > li.menu-item-has-children > i.arrow {
  display: inline-block;
  font-size: 14px;
  margin-right: 15px;
  color: #FFF;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu {
  position: static;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  top: 130%;
  padding: 20px;
  border-top: 3px solid #3d3d3d;
  transition: all 0.4s ease 0s;
  background: #FFF;
  z-index: -2;
  opacity: 0;
  visibility: hidden;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group {
  display: flex;
  margin: 0 -15px;
  align-items: stretch;
  flex-wrap: wrap;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group [class*=column-gv] {
  padding: 0 15px;
  min-height: 100%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group .column-gv-1 {
  flex: 0 0 100%;
  max-width: 100%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group .column-gv-2 {
  flex: 0 0 50%;
  max-width: 50%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group .column-gv-3 {
  flex: 0 0 33.333334%;
  max-width: 33.333334%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group .column-gv-4 {
  flex: 0 0 25%;
  max-width: 25%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group .column-gv-5 {
  flex: 0 0 20%;
  max-width: 20%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group .column-gv-6 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > a {
  font-family: inherit;
  font-size: 14px;
  display: block;
  padding-bottom: 10px;
  position: relative;
  transition: all 0.4s ease-in-out;
  color: #000;
  text-align: center;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > a > .thumb {
  display: block;
  padding-bottom: 60%;
  position: relative;
  width: 100%;
  background-position: center;
  margin-bottom: 15px;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > a > .thumb > img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > a > h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #032e71;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > a > span {
  display: block;
  font-size: 16px;
  color: #d01212;
  font-weight: 600;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > a:hover {
  transform: translateY(-10px);
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > .child-menu {
  display: block;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > .child-menu > li > a {
  font-size: 13px;
  display: block;
  line-height: normal;
  border-bottom: 1px dotted #d5d5d5;
  padding: 6px 0;
  color: #333;
  transition: all 0.45s ease 0s;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > .child-menu > li > ul {
  display: none;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-menu-group > li > .child-menu > li:hover > a {
  color: #ffa500;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-style-3-3 > .column-gv-3 {
  flex: 0 0 33.333334%;
  max-width: 33.333334%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-style-1-2-1 > .column-gv-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-style-1-2-1 > .column-gv-3:nth-child(2) {
  flex: 0 0 50%;
  max-width: 50%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-style-3-1 > .column-gv-2:nth-child(1) {
  flex: 0 0 75%;
  max-width: 75%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-style-3-1 > .column-gv-2:nth-child(2) {
  flex: 0 0 25%;
  max-width: 25%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-style-1-3 > .column-gv-2:nth-child(1) {
  flex: 0 0 25%;
  max-width: 25%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu > .sub-nav .mega-style-1-3 > .column-gv-2:nth-child(2) {
  flex: 0 0 75%;
  max-width: 75%;
}
.gv_navigation_block .nav_primary .mega_nav > li.is-mega-menu:hover > .sub-nav {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  top: 100%;
}
.gv_navigation_block .nav_primary .other_nav .search {
  position: relative;
  margin-left: 10px;
}
.gv_navigation_block .nav_primary .other_nav .search > button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: #FFF;
  border: 0;
  padding: 0;
  background: none;
  outline: none;
  cursor: pointer;
}
.gv_navigation_block .nav_primary .other_nav .search > button i {
  font-size: 16px;
}
.gv_navigation_block .nav_primary .other_nav .search button.show {
  background: #000;
  color: var(--primary-Color);
}
.gv_navigation_block .nav_primary .other_nav .search form {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  z-index: 5;
  padding: 8px;
  display: none;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
}
.gv_navigation_block .nav_primary .other_nav .search form::before {
  content: "";
  height: 9px;
  width: 16px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #fff;
  position: absolute;
  top: -9px;
  right: 12px;
}
.gv_navigation_block .nav_primary .other_nav .search form .form_group {
  width: 100%;
  min-width: 300px;
  position: relative;
  padding-right: 40px;
  border: 1px solid #ddd;
}
.gv_navigation_block .nav_primary .other_nav .search form .form_group input {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 10px 20px;
  outline: none;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}
.gv_navigation_block .nav_primary .other_nav .search form .form_group > button {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}
.gv_navigation_block .nav_primary .other_nav .search form .form_group > button i {
  font-size: 15px;
  color: #000;
}

/**
 * MENU MOBILE & TABLET
 */
.gv_menu_block {
  position: fixed;
  left: -322px;
  top: 0;
  transition: all 0.5s ease 0s;
  z-index: 99;
  width: 90%;
  max-width: 320px;
  background: #000;
  height: 100vh;
}
.gv_menu_block .logo_nav {
  background: #000;
  padding: 10px 10px 10px 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #5a5858;
}
.gv_menu_block .logo_nav .menu-name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.gv_menu_block .logo_nav .menu_bar_off {
  cursor: pointer;
  display: flex;
  height: 34px;
  width: 34px;
  align-items: center;
  justify-content: center;
}
.gv_menu_block .logo_nav .menu_bar_off i {
  font-size: 22px;
  color: #c4161c;
}
.gv_menu_block .menu_nav {
  font-family: "Open Sans", "Arial", sans-serif;
  list-style: none;
  padding: 0px 0;
  margin: 0;
}
.gv_menu_block .menu_nav > li {
  position: relative;
  display: block;
}
.gv_menu_block .menu_nav > li > a {
  color: #fff;
  padding: 13px 20px;
  display: flex;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 1px solid #333;
  line-height: 20px;
}
.gv_menu_block .menu_nav > li > a > i {
  margin-right: 5px;
}
.gv_menu_block .menu_nav > li > a > i::before {
  height: 18px;
  width: 18px;
}
.gv_menu_block .menu_nav > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4161c;
}
.gv_menu_block .menu_nav > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .menu_nav > li > .sub-menu {
  display: none;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_menu_block .menu_nav > li > .sub-menu > li {
  display: block;
  position: relative;
  padding: 0 0px;
}
.gv_menu_block .menu_nav > li > .sub-menu > li > a {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #333;
  color: #FFF;
  font-weight: 400;
}
.gv_menu_block .menu_nav > li > .sub-menu > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4161c;
}
.gv_menu_block .menu_nav > li > .sub-menu > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .menu_nav > li > .sub-menu > li ul {
  display: block;
  position: relative;
  list-style: none;
  padding: 0 0 0 10px;
  margin: 0;
}
.gv_menu_block .menu_nav > li > .sub-menu > li ul > li {
  display: block;
  position: relative;
}
.gv_menu_block .menu_nav > li > .sub-menu > li ul > li > a {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #333;
  color: #FFF;
}
.gv_menu_block .menu_nav > li > .sub-menu > li ul > li > i.arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4161c;
}
.gv_menu_block .menu_nav > li > .sub-menu > li ul > li > i.arrow.show {
  transform: rotate(180deg);
}
.gv_menu_block .support_nav {
  margin-top: 15px;
  padding: 0 20px;
}
.gv_menu_block .support_nav h4 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.gv_menu_block .support_nav p {
  display: flex;
  align-items: center;
  color: #fff;
}
.gv_menu_block .support_nav p i {
  font-style: normal;
  margin-right: 7px;
}
.gv_menu_block .support_nav p span {
  font-weight: bold;
  color: #c4161c;
}

.gv_menu_block.open {
  left: 0;
}

/**
 * FOOTER
 */
.gv_footer_block {
  position: relative;
  overflow: hidden;
  font-family: var(--primary-Font);
  background: #000;
  color: #FFF;
}
.gv_footer_block .container > .row > [class*=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.gv_footer_block .footer_box .name {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #c4161c;
}
.gv_footer_block .footer_box p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}
.gv_footer_block .footer_widget .list-prod {
  list-style: none;
  padding: 0;
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.gv_footer_block .footer_widget .list-prod > li {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 5px;
  padding-right: 5px;
}
.gv_footer_block .footer_widget .list-prod > li a {
  display: block;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ccc;
  padding: 8px 10px;
  white-space: nowrap;
  text-align: center;
  border-radius: 0px;
  line-height: 20px;
  transition: all 0.66s ease 0s;
}
.gv_footer_block .footer_widget .list-prod > li a:hover {
  border-color: #c4161c;
  background: #c4161c;
  color: #fff;
}
.gv_footer_block .footer_widget .list-post {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .footer_widget .list-post > li {
  display: block;
}
.gv_footer_block .footer_widget .list-post > li > a {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  color: #fff;
}
.gv_footer_block .footer_widget .list-post > li > a span {
  min-width: 64px;
  max-width: 64px;
}
.gv_footer_block .footer_widget .list-post > li > a span img {
  width: 100%;
  height: auto;
}
.gv_footer_block .footer_widget .list-post > li > a h4 {
  padding-left: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
.gv_footer_block .footer_widget .list-cars {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_footer_block .footer_widget .list-cars > li {
  display: block;
  margin-bottom: 12px;
  border-bottom: 1px dotted #ccc;
}
.gv_footer_block .footer_widget .list-cars > li > a {
  display: inline-block;
  color: #fff;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}
.gv_footer_block .google-map iframe {
  width: 100%;
  vertical-align: bottom;
  height: 270px;
}
/**
 * INFO
 */
.gv_footer_info {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}
@media (max-width: 575px) {
  .gv_footer_info {
    padding-bottom: 50px;
  }
}
.gv_footer_info .container > .flex {
  display: flex;
  align-items: center;
}
.gv_footer_info .logo {
  width: 100px;
  display: block;
}
.gv_footer_info .logo a {
  display: inline-block;
  padding: 10px;
  background: #000;
}
.gv_footer_info .logo a img {
  height: 80px;
  width: auto;
}
.gv_footer_info .info {
  padding-left: 16px;
  position: relative;
}
.gv_footer_info .info .desc {
  font-size: 15px;
  line-height: 1.45;
}
@media (max-width: 575px) {
  .gv_footer_info .info .desc {
    font-size: 14px;
  }
}
.gv_footer_info .info .desc *:last-child {
  margin-bottom: 0;
}

/**
 * HEADING
 */
.head_section {
  position: relative;
  overflow: hidden;
  font-family: var(--primary-Font);
}
.head_section .title {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-Color);
  text-transform: uppercase;
}

.head_block {
  position: relative;
}
.head_block .title {
  margin: 0;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  color: var(--primary-Color);
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}
.head_block .title::after {
  content: "";
  height: 3px;
  width: 80px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: var(--primary-Color);
}

.head_footer {
  position: relative;
  font-family: var(--primary-Font);
}
.head_footer .title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

/**
 * BREADCRUMB
 */
.gv_breadcrumb_block {
  background: #eee;
  font-family: var(--primary-Font);
}
.gv_breadcrumb_block .breadcrumb-nav {
  padding: 0;
  margin: 0;
}
.gv_breadcrumb_block .breadcrumb-nav span,
.gv_breadcrumb_block .breadcrumb-nav a {
  font-family: inherit;
  font-size: 14px;
  color: #000;
  line-height: 1;
}

/**
 * DESC
 */
.desc {
  font-family: var(--primary-Font);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
.desc img {
  max-width: 100%;
  height: auto;
}
.desc h1, .desc h2, .desc h3, .desc h4 {
  font-size: 20px;
  font-weight: 600;
}
.desc ul, .desc ol {
  padding-left: 20px;
}
.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;
  line-height: 1.67;
  text-align: justify;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content h1 {
  font-size: 1.9em;
}
.entry-content h2 {
  font-size: 1.65em;
}
.entry-content h3 {
  font-size: 1.45em;
}
.entry-content h4 {
  font-size: 1.2em;
}
.entry-content h5 {
  font-size: 1.05em;
}
.entry-content h6 {
  font-size: 1em;
}
.entry-content table {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid #dfdfdf;
}
.entry-content table tr td {
  border: 1px solid #dfdfdf;
  padding: 6px 12px;
  color: #000;
}
.entry-content table tr:nth-child(even) {
  background: #ececec;
}
.entry-content iframe {
  max-width: 100%;
}
.entry-content object {
  max-width: 100%;
}
.entry-content ul, .entry-content ol {
  padding-left: 15px;
}
.entry-content .wp-block-image {
  margin-bottom: 24px;
}
.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
 */
/* Loop Product */
.product_inner {
  position: relative;
  font-family: var(--primary-Font);
  transition: all 0.4s ease 0.1s;
}
.product_inner .image {
  margin-bottom: 10px;
  display: block;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.product_inner .image > a {
  padding-bottom: 60%;
  transition: all 0.4s ease-in-out;
  display: block;
  width: 100%;
  background-position: center;
  position: relative;
}
@media (max-width: 575px) {
  .product_inner .image > a {
    padding-bottom: 75%;
  }
}
.product_inner .image > a > img {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media (max-width: 575px) {
  .product_inner .image > a > img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.product_inner .image:hover > a {
  transform: translateY(-5px);
}
.product_inner .info {
  padding: 0 15px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .product_inner .info {
    padding: 0 0;
  }
}
.product_inner .info h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.1;
}
@media (max-width: 575px) {
  .product_inner .info h3 {
    font-size: 17px;
  }
}
.product_inner .info h3 > a {
  color: var(--primary-Color);
}
.product_inner .info .price > span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .product_inner .info .price > span {
    font-size: 13px;
  }
}
.product_inner .info .price > span b {
  font-size: 18px;
  color: var(--primary-Color);
}
@media (max-width: 575px) {
  .product_inner .info .price > span b {
    font-size: 15px;
  }
}
.product_inner .more a {
  background: #ddd;
  color: #000;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 20px;
  transition: all 0.45s ease 0s;
}
.product_inner .more a strong {
  display: inline-block;
}
.product_inner .more a i {
  margin-left: 10px;
}
.product_inner:hover .more a {
  color: #fff;
  background: #c4161c;
}

/**
 * LOOP RECENT
 */
.recent_inner {
  position: relative;
  padding: 0;
}
.recent_inner .image {
  width: 76px;
  float: left;
}
.recent_inner .image a {
  display: block;
}
.recent_inner .image a img {
  width: 100%;
  height: auto;
}
.recent_inner .info {
  margin-left: 89px;
}
.recent_inner .info .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0px;
}
.recent_inner .info .title a {
  color: #333;
}
.recent_inner .info .title a:hover {
  color: #bc002d;
  text-decoration: underline;
}

/* Loop Post */
.post_inner {
  position: relative;
  margin: 0;
  padding: 0px;
  background: #f6f6f6;
  height: 100%;
}
.post_inner .image {
  position: relative;
}
.post_inner .image > a {
  display: block;
  padding-bottom: 62%;
  width: 100%;
  background-position: center;
  position: relative;
  height: auto;
  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.67s ease 0s;
}
.post_inner .image:hover > a img {
  transform: scale(1.13);
}
.post_inner .info {
  padding: 12px;
  position: relative;
}
.post_inner .info .title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.post_inner .info .title a {
  color: #000;
}
.post_inner .info .title a:hover {
  color: var(--primary-Color);
}

/**
 * LOOP RELATED
 */
.related_inner {
  position: relative;
}
.related_inner .title {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}
.related_inner .title a {
  color: #333;
}
.related_inner .title a:hover {
  color: #bc002d;
  text-decoration: underline;
}
.related_inner > span {
  position: absolute;
  top: 10px;
  right: 0;
  color: #999;
  font-size: 14px;
}

/** 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: 0px;
  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;
}

/**
 * FORM POPUP
 */
.gv_form_popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gv_form_popup .inner {
  width: 100%;
  max-width: 480px;
  position: relative;
  padding: 30px;
  background: #fff;
  color: #000;
}
.gv_form_popup .inner > button {
  position: absolute;
  right: 0px;
  top: 0;
  height: 34px;
  width: 34px;
  background: rgba(0, 0, 0, 0.78);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
}
.gv_form_popup .inner > button i {
  font-size: 20px;
}
.gv_form_popup .inner .form_popup > .title {
  font-size: 22px;
  text-transform: uppercase;
  color: #c4161c;
  font-weight: bold;
  margin-bottom: 5px;
}
.gv_form_popup .inner .form_popup > p {
  text-align: center;
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
}
.gv_form_popup .inner .form_popup .form_box .wpcf7-form input[type=text],
.gv_form_popup .inner .form_popup .form_box .wpcf7-form input[type=number],
.gv_form_popup .inner .form_popup .form_box .wpcf7-form input[type=date],
.gv_form_popup .inner .form_popup .form_box .wpcf7-form input[type=email],
.gv_form_popup .inner .form_popup .form_box .wpcf7-form input[type=tel],
.gv_form_popup .inner .form_popup .form_box .wpcf7-form textarea,
.gv_form_popup .inner .form_popup .form_box .wpcf7-form select {
  border: 1px solid #444;
  padding: 8px 15px;
  color: #000;
  background: transparent;
  font-family: var(--primary-Font);
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  width: 100%;
  outline: none;
  border-radius: 0px;
}
.gv_form_popup .inner .form_popup .form_box .wpcf7-form span.wpcf7-radio {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}
.gv_form_popup .inner .form_popup .form_box .wpcf7-form span.wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.gv_form_popup .inner .form_popup .form_box .wpcf7-form span.wpcf7-radio .wpcf7-list-item input[type=radio] {
  margin: 0px 0;
  margin-left: 0px;
  width: auto;
  padding: 0;
}
.gv_form_popup .inner .form_popup .form_box .wpcf7-form input.wpcf7-submit {
  color: #FFF;
  background: #c4161c;
  border-color: #c4161c;
  margin-bottom: 0;
  outline: none;
}

/**
 * ANIMATION
 */
@keyframes slide-top-to-bottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes slide-left-to-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/**
 * TASKBAR
 */
.gv_button_task {
  position: fixed;
  background: #fff;
  bottom: 0;
  z-index: 99999;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 5px 0px #bbb;
}
.gv_button_task .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}
.gv_button_task .inner > a {
  display: inline-block;
  padding: 10px 10px;
  font-size: 14px;
  color: #333;
  text-align: center;
}
.gv_button_task .inner > a > img {
  height: 40px;
  width: auto;
}
.gv_button_task .inner > a > span {
  display: block;
  padding-top: 5px;
}
.gv_button_task .inner > span {
  display: inline-block;
  padding: 10px 10px;
  font-size: 14px;
  color: #333;
  text-align: center;
  cursor: pointer;
}
.gv_button_task .inner > span > img {
  height: 40px;
  width: auto;
}
.gv_button_task .inner > span > span {
  display: block;
  padding-top: 5px;
}

@media (min-width: 576px) {
  .gv_button_task {
    background: none;
    box-shadow: initial;
    left: initial;
    right: 15px;
    bottom: 30px;
  }
  .gv_button_task .inner {
    padding: 0;
    width: 40px;
    flex-wrap: wrap;
  }
  .gv_button_task .inner > a, .gv_button_task .inner > span {
    display: block;
    position: relative;
    margin: 10px 0;
    padding: 0;
    cursor: pointer;
  }
  .gv_button_task .inner > a > span, .gv_button_task .inner > span > span {
    display: inline-block;
    position: absolute;
    background: #fff;
    padding: 5px 10px;
    font-size: 13px;
    right: 100%;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }
  .gv_button_task .inner > a > span::after, .gv_button_task .inner > span > span::after {
    height: 10px;
    width: 5px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #FFF;
    content: "";
    right: -5px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
  }
  .gv_button_task .inner > a:hover > span, .gv_button_task .inner > span:hover > span {
    right: 115%;
    opacity: 1;
    visibility: visible;
  }
}/*# sourceMappingURL=style.css.map */