/** BLOG ============================================*/
/** Heading */
.head_taxonomy {
  position: relative;
  font-family: var(--primary-Font);
}
.head_taxonomy .title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 575px) {
  .head_taxonomy .title {
    font-weight: 26px;
    line-height: 1.6;
  }
}

.head_single {
  position: relative;
  font-family: var(--primary-Font);
}
.head_single .title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  color: #222;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .head_single .title {
    font-weight: 20px;
  }
}

.head_blog {
  position: relative;
  font-family: var(--primary-Font);
}
.head_blog .title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  color: var(--heading-Color);
  width: 100%;
}
@media (max-width: 575px) {
  .head_blog .title {
    font-weight: 22px;
  }
}

.head_box {
  position: relative;
  font-family: var(--primary-Font);
}
.head_box .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  color: #01a652;
}
@media (max-width: 767px) {
  .head_box .title {
    font-size: 20px;
  }
}

/** Banner Large */
.gvx-banner-large {
  position: relative;
  overflow: hidden;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1600px) {
  .gvx-banner-large {
    height: calc(100vh - 390px);
  }
}
.gvx-banner-large .container {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 3;
  align-items: flex-end;
}
.gvx-banner-large .container .box {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
}
.gvx-banner-large .container .box .sub {
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: -50px;
  white-space: nowrap;
  transform: translateX(-50%);
  opacity: 0.2;
}
.gvx-banner-large .container .box h1 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .gvx-banner-large .container .box h1 {
    font-size: 28px;
    line-height: 1.6;
  }
}
.gvx-banner-large .container .box .desc {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

/** Banner Blog */
.gvx-banner-blog {
  position: relative;
  overflow: hidden;
  height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gvx-banner-blog::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--second-Color);
  opacity: 0.3;
  z-index: 1;
}
.gvx-banner-blog .container {
  position: relative;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
}
.gvx-banner-blog .box {
  width: 100%;
  display: block;
}
.gvx-banner-blog .box .head_taxonomy {
  text-align: center;
  margin-bottom: 4px;
}
.gvx-banner-blog .box .head_taxonomy .title {
  color: #fff;
}
.gvx-banner-blog .box .breadcrumb-nav {
  padding: 0;
  margin: 0;
  text-align: center;
}
.gvx-banner-blog .box .breadcrumb-nav p {
  margin-bottom: 0;
}
.gvx-banner-blog .box .breadcrumb-nav span,
.gvx-banner-blog .box .breadcrumb-nav a {
  font-family: var(--primary-Font);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: normal;
}
.gvx-banner-blog .box .breadcrumb-nav span.separator {
  margin: 0 10px;
}
.gvx-banner-blog .box .breadcrumb-nav span.last {
  font-weight: 400;
  color: #333;
}
.gvx-banner-blog .box .breadcrumb-nav a:hover {
  color: var(--second-Color);
}

/** Post Category */
.gv_post_category {
  position: relative;
  overflow: hidden;
  padding: 32px 0 48px;
}
@media (max-width: 767px) {
  .gv_post_category .container .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (max-width: 767px) {
  .gv_post_category .container .row > [class*=col-] {
    padding-left: -8px;
    padding-right: -8px;
  }
}
.gv_post_category .blog-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

/** Post Single */
.gv_post_single {
  position: relative;
  padding: 36px 0 48px;
}
.gv_post_single .container > .flex {
  margin: 0 -16px;
}
@media (min-width: 992px) {
  .gv_post_single .container > .flex {
    margin: 0 -24px;
  }
}
.gv_post_single .container > .flex > .clx-left {
  flex: 0 0 72%;
  max-width: 72%;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 100%;
}
@media (max-width: 991px) {
  .gv_post_single .container > .flex > .clx-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .gv_post_single .container > .flex > .clx-left {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.gv_post_single .container > .flex > .clx-right {
  flex: 0 0 28%;
  max-width: 28%;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 100%;
}
@media (max-width: 991px) {
  .gv_post_single .container > .flex > .clx-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .gv_post_single .container > .flex > .clx-right {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.gv_post_single .sidebar-main {
  height: 100%;
}

/** Page Single */
.gv_page_single {
  position: relative;
  padding: 32px 0 48px;
}
.gv_page_single .content-wrap .head_blog {
  padding-bottom: 24px;
}

/** Page About */
.gv_page_about {
  position: relative;
  overflow: hidden;
}
.gv_page_about .abx-intro {
  position: relative;
  margin: 40px 0;
}
.gv_page_about .abx-intro .intro-item {
  padding-top: 16px;
  padding-bottom: 16px;
}
.gv_page_about .abx-intro .intro-item .inner .icon {
  display: block;
  padding-bottom: 24px;
  text-align: center;
}
.gv_page_about .abx-intro .intro-item .inner .icon img {
  max-width: 100%;
  height: 60px;
  display: inline-block;
}
.gv_page_about .abx-intro .intro-item .inner .info {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.gv_page_about .abx-intro .intro-item .inner .info h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}
.gv_page_about .abx-intro .intro-item .inner .info p {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 400;
}
.gv_page_about .abx-discovery {
  position: relative;
  margin: 40px 0;
}
.gv_page_about .abx-discovery > .row {
  align-items: center;
}
.gv_page_about .abx-discovery .image {
  position: relative;
  padding-bottom: 15%;
}
.gv_page_about .abx-discovery .image .im-image {
  width: 100%;
  max-width: 85%;
  display: block;
  position: relative;
}
.gv_page_about .abx-discovery .image .im-image img {
  width: 100%;
  height: auto;
}
.gv_page_about .abx-discovery .image .im-photo {
  position: absolute;
  bottom: 0;
  width: 40%;
  z-index: 2;
  right: 0;
}
.gv_page_about .abx-discovery .image .im-photo img {
  width: 100%;
  height: auto;
}
.gv_page_about .abx-discovery .info {
  position: relative;
  padding-left: 50px;
}
@media (max-width: 991px) {
  .gv_page_about .abx-discovery .info {
    padding-left: 0;
    padding-top: 32px;
  }
}
.gv_page_about .abx-discovery .info .name {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.8;
  color: var(--second-Color);
  font-weight: 600;
}
@media (max-width: 767px) {
  .gv_page_about .abx-discovery .info .name {
    font-size: 25px;
    line-height: 1.6;
  }
}
.gv_page_about .abx-discovery .info .desc {
  font-size: 16px;
  line-height: 1.6;
}
.gv_page_about .abx-category {
  position: relative;
  margin: 40px 0;
}
.gv_page_about .abx-category .name {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 0px;
  line-height: 1.8;
  text-align: center;
  color: var(--second-Color);
  font-weight: 600;
}
@media (max-width: 767px) {
  .gv_page_about .abx-category .name {
    font-size: 25px;
    line-height: 1.6;
  }
}
.gv_page_about .abx-category .category-item {
  padding-top: 12px;
  padding-bottom: 12px;
}
.gv_page_about .abx-category .category-item .inner > a {
  display: block;
  position: relative;
}
.gv_page_about .abx-category .category-item .inner > a::after {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .gv_page_about .abx-category .category-item .inner > a::after {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
}
.gv_page_about .abx-category .category-item .inner > a .img {
  position: relative;
  display: block;
  height: 400px;
  background-position: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .gv_page_about .abx-category .category-item .inner > a .img {
    height: 360px;
  }
}
@media (max-width: 1023px) {
  .gv_page_about .abx-category .category-item .inner > a .img {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .gv_page_about .abx-category .category-item .inner > a .img {
    height: 280px;
  }
}
.gv_page_about .abx-category .category-item .inner > a .img 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_page_about .abx-category .category-item .inner > a h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding-bottom: 16px;
  margin-bottom: 0;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: -10;
  transition: all 0.3s ease 0s;
}
@media (max-width: 991px) {
  .gv_page_about .abx-category .category-item .inner > a h3 {
    opacity: 1;
    visibility: visible;
    z-index: 9;
  }
}
.gv_page_about .abx-category .category-item .inner > a h3::before {
  content: "";
  height: 2px;
  width: 80px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  bottom: 0;
}
.gv_page_about .abx-category .category-item .inner > a:hover::after {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.gv_page_about .abx-category .category-item .inner > a:hover h3 {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.gv_page_about .abx-register {
  position: relative;
  margin: 40px 0;
}
.gv_page_about .abx-register .name {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.8;
  text-align: center;
  color: var(--second-Color);
  font-weight: 600;
}
@media (max-width: 767px) {
  .gv_page_about .abx-register .name {
    font-size: 25px;
    line-height: 1.6;
  }
}
.gv_page_about .abx-register .form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.gv_page_about .abx-register .form .wpcf7-form input[type=text],
.gv_page_about .abx-register .form .wpcf7-form input[type=tel],
.gv_page_about .abx-register .form .wpcf7-form input[type=email],
.gv_page_about .abx-register .form .wpcf7-form input[type=date],
.gv_page_about .abx-register .form .wpcf7-form select, .gv_page_about .abx-register .form .wpcf7-form textarea {
  border: 0;
  border-bottom: 1px solid var(--second-Color);
  margin: 0;
  margin-bottom: 16px;
  padding: 12px 12px;
  color: #000;
  border-radius: 0;
}
.gv_page_about .abx-register .form .wpcf7-form input.wpcf7-submit {
  background: var(--second-Color) !important;
  border-radius: 0;
}

/** Page Service */
.gv_page_service {
  position: relative;
  overflow: hidden;
}
.gv_page_service .service-block {
  position: relative;
  margin: 60px 0;
  overflow: hidden;
  padding: 10% 0;
}
@media (max-width: 767px) {
  .gv_page_service .service-block {
    padding: 0;
    margin: 0;
  }
}
.gv_page_service .service-block .container {
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .gv_page_service .service-block .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.gv_page_service .service-block .info {
  background: var(--second-Color);
  color: #fff;
  padding: 100px 40px;
  position: relative;
}
@media (max-width: 575px) {
  .gv_page_service .service-block .info {
    padding: 70px 20px;
  }
}
.gv_page_service .service-block .info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 575px) {
  .gv_page_service .service-block .info h3 {
    font-size: 23px;
    line-height: 1.5;
  }
}
.gv_page_service .service-block .info .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}
.gv_page_service .service-block .info .desc*:last-child {
  margin-bottom: 0;
}
.gv_page_service .service-block .info .icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 100px;
}
@media (max-width: 575px) {
  .gv_page_service .service-block .info .icon {
    width: 80px;
  }
}
.gv_page_service .service-block .info .icon::after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(182, 151, 76, 0) 0%, rgba(182, 151, 76, 0) 60%, rgba(182, 151, 76, 0.3) 80%, rgba(182, 151, 76, 0.4) 100%);
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
}
.gv_page_service .service-block .info .icon span {
  width: 100px;
  height: 100px;
  display: block;
}
@media (max-width: 575px) {
  .gv_page_service .service-block .info .icon span {
    width: 80px;
    height: 80px;
  }
}
.gv_page_service .service-block .info .icon span img {
  width: 100%;
  height: auto;
}
.gv_page_service .service-block .bg {
  width: 65%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .gv_page_service .service-block .bg {
    width: 100%;
    position: relative;
    padding-bottom: 60%;
    height: auto;
  }
}
.gv_page_service .service-block.is-even .container .row {
  justify-content: flex-end;
}
.gv_page_service .service-block.is-even .bg {
  left: 0;
  right: initial;
}

/** Page Wishlist */
.gv_page_wishlist {
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
}
.gv_page_wishlist .wishlist-head .wh-left,
.gv_page_wishlist .wishlist-item .wh-left {
  flex: 0 0 15%;
  max-width: 15%;
  display: flex;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-head .wh-left,
  .gv_page_wishlist .wishlist-item .wh-left {
    padding-left: 0;
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.gv_page_wishlist .wishlist-head .wh-right,
.gv_page_wishlist .wishlist-item .wh-right {
  flex: 0 0 85%;
  max-width: 85%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-head .wh-right,
  .gv_page_wishlist .wishlist-item .wh-right {
    flex: 0 0 70%;
    max-width: 70%;
    flex-wrap: wrap;
    padding-left: 16px;
  }
}
.gv_page_wishlist .wishlist-head .wh-right .wx-1,
.gv_page_wishlist .wishlist-item .wh-right .wx-1 {
  flex: 0 0 30%;
  max-width: 30%;
}
.gv_page_wishlist .wishlist-head .wh-right .wx-2,
.gv_page_wishlist .wishlist-item .wh-right .wx-2 {
  flex: 0 0 30%;
  max-width: 30%;
}
.gv_page_wishlist .wishlist-head .wh-right .wx-3,
.gv_page_wishlist .wishlist-item .wh-right .wx-3 {
  flex: 0 0 20%;
  max-width: 20%;
}
.gv_page_wishlist .wishlist-head .wh-right .wx-4,
.gv_page_wishlist .wishlist-item .wh-right .wx-4 {
  flex: 0 0 20%;
  max-width: 20%;
}
.gv_page_wishlist .wishlist-head {
  display: flex;
  border-bottom: 1px solid #ccc;
  align-items: center;
  padding: 20px 0;
}
.gv_page_wishlist .wishlist-head .wh-right {
  flex: 0 0 85%;
  max-width: 85%;
  display: flex;
  align-items: center;
}
.gv_page_wishlist .wishlist-head .wh-right .wx-1 {
  flex: 0 0 30%;
  max-width: 30%;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-head .wh-right .wx-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-head .wh-right .wx-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-head .wh-right .wx-3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-head .wh-right .wx-4 {
    display: none;
  }
}
.gv_page_wishlist .wishlist-head span {
  font-size: 18px;
  font-weight: 500;
  display: block;
}
.gv_page_wishlist .wishlist-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item {
    align-items: flex-start;
  }
}
.gv_page_wishlist .wishlist-item .wh-left {
  position: relative;
}
.gv_page_wishlist .wishlist-item .wh-left .action {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-left .action {
    position: absolute;
    top: -10px;
    transform: translateY(0);
    left: -6px;
  }
}
.gv_page_wishlist .wishlist-item .wh-left .action > button {
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  background: transparent;
  outline: none;
  border-radius: 100%;
}
.gv_page_wishlist .wishlist-item .wh-left .action > button svg {
  fill: #000;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-left .action > button {
    background: #000;
    height: 20px;
    width: 20px;
  }
  .gv_page_wishlist .wishlist-item .wh-left .action > button svg {
    height: 14px;
    width: 14px;
    fill: #fff;
  }
}
.gv_page_wishlist .wishlist-item .wh-left .action > button:hover {
  border-color: red;
}
.gv_page_wishlist .wishlist-item .wh-left .action > button:hover svg {
  fill: red;
}
.gv_page_wishlist .wishlist-item .wh-left .thumb {
  display: flex;
}
.gv_page_wishlist .wishlist-item .wh-left .thumb > a {
  display: inline-block;
  width: 80px;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-left .thumb > a {
    width: 100%;
    max-width: 120px;
  }
}
.gv_page_wishlist .wishlist-item .wh-left .thumb > a img {
  width: 100%;
  height: auto;
}
.gv_page_wishlist .wishlist-item .wh-right .wx-1 {
  flex: 0 0 30%;
  max-width: 30%;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-right .wx-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-right .wx-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-right .wx-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-right .wx-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.gv_page_wishlist .wishlist-item .wh-right .name {
  font-size: 16px;
  font-weight: 500;
}
.gv_page_wishlist .wishlist-item .wh-right .name > a {
  color: #000;
}
.gv_page_wishlist .wishlist-item .wh-right .price .prc-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.gv_page_wishlist .wishlist-item .wh-right .price .prc-group span {
  font-size: 16px;
  font-weight: 700;
  color: var(--second-Color);
  display: inline-block;
}
.gv_page_wishlist .wishlist-item .wh-right .price .prc-group i {
  font-style: normal;
  font-size: 15px;
  color: var(--second-Color);
  font-weight: 600;
}
.gv_page_wishlist .wishlist-item .wh-right .price .prc-normal {
  display: flex;
  gap: 8px;
  align-items: center;
}
.gv_page_wishlist .wishlist-item .wh-right .price .prc-normal span {
  font-size: 16px;
  font-weight: 700;
  color: var(--second-Color);
  display: inline-block;
}
.gv_page_wishlist .wishlist-item .wh-right .price .prc-normal span.px-reg {
  font-size: 16px;
  color: var(--second-Color);
}
.gv_page_wishlist .wishlist-item .wh-right .price .prc-normal span.px-old {
  font-size: 14px;
  text-decoration: line-through;
  color: #888;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-right .status {
    margin-bottom: 10px;
  }
}
.gv_page_wishlist .wishlist-item .wh-right .status .in-status {
  display: inline-block;
  text-align: center;
}
.gv_page_wishlist .wishlist-item .wh-right .status .in-status > i {
  height: 22px;
  width: 22px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-right .status .in-status > i {
    display: none;
  }
}
.gv_page_wishlist .wishlist-item .wh-right .status .in-status > span {
  display: block;
  text-align: center;
  font-size: 15px;
}
.gv_page_wishlist .wishlist-item .wh-right .more > a {
  display: inline-block;
  background: #000;
  padding: 8px 20px;
  border-radius: 30px;
  color: #fff;
  line-height: 20px;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .gv_page_wishlist .wishlist-item .wh-right .more > a {
    padding: 4px 20px;
  }
}

/** Page Contact */
.gv_page_contact {
  position: relative;
  overflow: hidden;
  padding: 32px 0 0px;
}
.gv_page_contact .form-box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.107);
  padding: 40px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .gv_page_contact .form-box {
    padding: 20px;
  }
}
.gv_page_contact .form-box .name {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 16px;
  text-align: center;
  padding-bottom: 12px;
  color: var(--second-Color);
}
@media (max-width: 575px) {
  .gv_page_contact .form-box .name {
    font-weight: 20px;
  }
}
.gv_page_contact .form-box .name::after {
  content: "";
  height: 2px;
  width: 80px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #444;
}
.gv_page_contact .form-box .desc {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
  color: #000;
}
.gv_page_contact .form-box .wpcf7-form p {
  margin-bottom: 0;
}
.gv_page_contact .form-box .wpcf7-form span.wpcf7-form-control-wrap {
  display: block;
}
.gv_page_contact .form-box .wpcf7-form input[type=text],
.gv_page_contact .form-box .wpcf7-form input[type=email],
.gv_page_contact .form-box .wpcf7-form input[type=tel],
.gv_page_contact .form-box .wpcf7-form input[type=date],
.gv_page_contact .form-box .wpcf7-form select {
  border: 1px solid #ddd;
  width: 100%;
  border-radius: 0;
  margin: 10px 0;
}
.gv_page_contact .form-box .wpcf7-form textarea {
  border: 1px solid #ddd;
  width: 100%;
  border-radius: 0;
  margin: 10px 0;
  height: 144px;
}
.gv_page_contact .form-box .wpcf7-form input.wpcf7-submit {
  border-radius: 0;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 0.5px;
}
.gv_page_contact .form-box .wpcf7-form .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.gv_page_contact .contact-box {
  margin-bottom: 32px;
  position: relative;
}
.gv_page_contact .contact-box .row {
  align-items: stretch;
}
.gv_page_contact .contact-box .row > [class*=col-] {
  min-height: 100%;
  padding: 15px;
}
.gv_page_contact .contact-box .info .name {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.6;
}
.gv_page_contact .contact-box .info .desc {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}
.gv_page_contact .contact-box .info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gv_page_contact .contact-box .info ul > li {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .gv_page_contact .contact-box .info ul > li {
    padding-bottom: 20px;
  }
}
.gv_page_contact .contact-box .info ul > li:last-child {
  padding-bottom: 0;
}
.gv_page_contact .contact-box .info ul > li span.icon {
  height: 54px;
  min-width: 54px;
  max-width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--second-Color);
  background: var(--second-Color);
  border-radius: 100%;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .gv_page_contact .contact-box .info ul > li span.icon {
    height: 40px;
    max-width: 40px;
    min-width: 40px;
  }
}
.gv_page_contact .contact-box .info ul > li span.icon svg {
  fill: #fff;
}
.gv_page_contact .contact-box .info ul > li span.text,
.gv_page_contact .contact-box .info ul > li a.text {
  flex: 1;
  max-width: 100%;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 767px) {
  .gv_page_contact .contact-box .info ul > li span.text,
  .gv_page_contact .contact-box .info ul > li a.text {
    font-size: 15px;
  }
}
.gv_page_contact .contact-box .info ul > li span.text strong,
.gv_page_contact .contact-box .info ul > li a.text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .gv_page_contact .contact-box .info ul > li span.text strong,
  .gv_page_contact .contact-box .info ul > li a.text strong {
    font-size: 13px;
  }
}
.gv_page_contact .contact-box .info ul > li.ctx-phone a {
  color: #000;
}
.gv_page_contact .contact-box .form {
  position: relative;
  display: block;
}
.gv_page_contact .contact-box .form .name {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.6;
}
.gv_page_contact .contact-box .form .desc {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}
.gv_page_contact .contact-box .form .wpcf7-form input[type=text],
.gv_page_contact .contact-box .form .wpcf7-form input[type=tel],
.gv_page_contact .contact-box .form .wpcf7-form input[type=email],
.gv_page_contact .contact-box .form .wpcf7-form input[type=date],
.gv_page_contact .contact-box .form .wpcf7-form select, .gv_page_contact .contact-box .form .wpcf7-form textarea {
  border: 0;
  border-bottom: 1px solid var(--second-Color);
  margin: 0;
  margin-bottom: 16px;
  padding: 12px 12px;
  color: #000;
  border-radius: 0;
}
.gv_page_contact .contact-box .form .wpcf7-form input.wpcf7-submit {
  background: var(--second-Color) !important;
  border-radius: 0;
}
.gv_page_contact .map-box {
  display: block;
}
.gv_page_contact .map-box .embed-map {
  height: 450px;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .gv_page_contact .map-box .embed-map {
    height: 400px;
  }
}
.gv_page_contact .map-box .embed-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

/** Page Woocommerce */
.gv_page_woocommerce {
  position: relative;
  overflow: hidden;
  padding: 32px 0 48px;
  background: #fff;
}
/** Woocommerce */
.woocommerce form .form-row-first {
  float: none;
  width: 100%;
}
.woocommerce form .form-row {
  padding: 0;
  flex-wrap: wrap;
}
.woocommerce form .form-row label {
  display: block;
  width: 100%;
}
.woocommerce form .form-row textarea {
  outline: none !important;
  line-height: 20px;
  padding: 9px 15px;
  border: 1px solid #dfdfdf !important;
  width: 100%;
  height: 86px !important;
}
.woocommerce form .form-row input[type=text],
.woocommerce form .form-row input[type=email],
.woocommerce form .form-row input[type=tel],
.woocommerce form .form-row input[type=password] {
  outline: none !important;
  line-height: 20px;
  padding: 9px 15px;
  border: 1px solid #dfdfdf !important;
  width: 100%;
}
.woocommerce form .form-row span.password-input {
  width: 100%;
}
.woocommerce form .form-row span.password-input input[type=password] {
  line-height: 20px;
  padding: 9px 15px;
  border: 1px solid #dfdfdf;
  width: 100%;
}
.woocommerce form .form-row button.button {
  background: #0b6bbf;
  font-weight: 400;
  padding: 10px 19px;
  color: #FFF;
}
.woocommerce form .form-row span.woocommerce-input-wrapper {
  width: 100%;
  display: block;
}
.woocommerce form .form-row span.selection span.select2-selection--single {
  height: 40px;
  margin: 0;
  border-radius: 0;
}
.woocommerce form .form-row span.selection span.select2-selection--single .select2-selection__arrow {
  height: 40px;
  position: absolute;
  top: 1px;
  right: 8px;
  width: 20px;
}
.woocommerce form .form-row span.selection span.select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  padding-left: 15px;
}
.woocommerce form p {
  margin-top: 20px;
}
.woocommerce form p button.button {
  background: black;
  font-weight: 400;
  padding: 10px 19px;
  color: #FFF;
}
.woocommerce form p button.button:hover {
  background: darkorange;
}
.woocommerce form.checkout .form-row-first {
  float: none;
  width: 100%;
}
.woocommerce form.checkout #customer_details {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 24px;
}
.woocommerce form.checkout #customer_details .col-1, .woocommerce form.checkout #customer_details .col-2 {
  float: none !important;
  width: auto !important;
  flex: 0 0 50% !important;
  max-width: 50% !important;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .woocommerce form.checkout #customer_details .col-1, .woocommerce form.checkout #customer_details .col-2 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.woocommerce form.checkout #customer_details .woocommerce-billing-fields {
  margin-bottom: 24px !important;
}
.woocommerce form.checkout #customer_details .woocommerce-billing-fields h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #000;
}
.woocommerce form.checkout #customer_details .woocommerce-additional-fields > h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #000;
}
.woocommerce form.checkout #customer_details #ship-to-different-address {
  margin-bottom: 12px;
  float: none !important;
  font-size: 20px;
}
.woocommerce form.checkout #customer_details #ship-to-different-address .woocommerce-form__label {
  margin-bottom: 0;
}
.woocommerce form.checkout #customer_details #ship-to-different-address .woocommerce-form__label span {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.woocommerce form.checkout #order_review_heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #000;
}
.woocommerce form.checkout #order_review tr.cart-subtotal {
  display: none;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  margin: 0.5em 0;
  padding: 20px 30px;
}
.woocommerce form.login .form-row-first,
.woocommerce form.checkout_coupon .form-row-first {
  float: left;
  width: 47%;
}
.woocommerce form.login .form-row-last,
.woocommerce form.checkout_coupon .form-row-last {
  float: right;
  width: 47%;
}
.woocommerce .cart_totals > h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}
.woocommerce .cart_totals a.button.alt {
  background: var(--primary-Color) !important;
  font-size: 15px;
  font-weight: 600;
}
.woocommerce #customer_login .u-column1 > h2, .woocommerce #customer_login .u-column2 > h2 {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .woocommerce .woocommerce-customer-details .woocommerce-column--1 {
    padding-bottom: 24px;
  }
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--name {
  padding-left: 1.5em;
  position: relative;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--name::before {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\e038";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}
.woocommerce .woocommerce-order .thankyou-box {
  display: block;
  padding-bottom: 24px;
  text-align: center;
}
.woocommerce .woocommerce-order .thankyou-box img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
@media (max-width: 767px) {
  .woocommerce ul.order_details li {
    margin-bottom: 10px;
  }
}
.woocommerce .product-quantity .quantity {
  display: flex;
  align-items: center;
}
.woocommerce .product-quantity .quantity label {
  display: none;
}
.woocommerce .product-quantity .quantity input {
  border-radius: 3px;
  margin: 0 3px;
  border: 1px solid #ccc;
  padding: 0px 0px;
  height: 38px;
  line-height: 38px;
  width: 80px;
}
.woocommerce .product-quantity .quantity span {
  display: flex;
  height: 38px;
  background: #f0f0f0;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border-radius: 3px;
}
.woocommerce .product-quantity .quantity input::-webkit-outer-spin-button,
.woocommerce .product-quantity .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce .product-quantity .quantity input[type=number] {
  -moz-appearance: textfield;
}
.woocommerce .coupon {
  display: none !important;
}
.woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.woocommerce .woocommerce-MyAccount-navigation ul > li {
  padding: 5px 0;
  position: relative;
  display: block;
}
.woocommerce .woocommerce-MyAccount-navigation ul > li > a {
  display: block;
  padding: 10px 24px;
  line-height: 20px;
  border: 1px solid #ccc;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
}
.woocommerce .woocommerce-MyAccount-navigation ul > li.is-active > a {
  border-color: var(--primary-Color);
  background: var(--primary-Color);
  color: #fff;
}
.woocommerce .woocommerce-MyAccount-content .col2-set {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.woocommerce .woocommerce-MyAccount-content .col2-set .col-1, .woocommerce .woocommerce-MyAccount-content .col2-set .col-2 {
  padding-left: 15px;
  padding-right: 15px;
  flex: 0 0 50% !important;
  max-width: 50% !important;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-MyAccount-content .col2-set .col-1, .woocommerce .woocommerce-MyAccount-content .col2-set .col-2 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.woocommerce .woocommerce-table--order-downloads .download-file a {
  background: red !important;
}

/** Content Box */
.content-box {
  position: relative;
}
.content-box .thumb-box {
  margin-bottom: 24px;
  padding-bottom: 50%;
  display: block;
  background-position: center;
  width: 100%;
  position: relative;
}
.content-box .thumb-box 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%;
}
.content-box .head_single {
  padding-bottom: 12px;
}
.content-box .meta-box {
  font-size: 14px;
  color: #444;
  font-weight: 400;
  position: relative;
  gap: 12px;
  display: inline-block;
  transition: 0.6s;
  z-index: 1;
  margin-bottom: 20px;
}
.content-box .meta-box span {
  display: flex;
  align-items: center;
  color: #000;
}
.content-box .meta-box span i {
  height: 14px;
  width: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-right: 4px;
  filter: brightness(0);
}
/** Navigation Wrap */
.navi-wrap {
  margin-bottom: 32px;
  position: relative;
}
.navi-wrap .row {
  align-items: center;
}
.navi-wrap span {
  height: 33px;
  min-width: 33px;
  background: var(--second-Color);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navi-wrap span i {
  color: #fff;
  font-size: 16px;
}
.navi-wrap a {
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.1;
  font-weight: 500;
}
.navi-wrap .col-left {
  display: flex;
  align-items: center;
}
.navi-wrap .col-left span {
  margin-right: 12px;
}
.navi-wrap .col-left span i {
  margin-right: 2px;
}
.navi-wrap .col-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
.navi-wrap .col-right span {
  margin-left: 12px;
}
.navi-wrap .col-right span i {
  margin-left: 2px;
}

/** Comment Box */
.comment-box {
  position: relative;
}
.comment-box .comment-list {
  padding-bottom: 24px;
}
.comment-box .comment-list .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--second-Color);
}
.comment-box .comment-list .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-box .comment-list .list > li {
  display: block;
  margin-bottom: 20px;
}
.comment-box .comment-list .list > li .inner {
  display: flex;
}
.comment-box .comment-list .list > li .inner .avatar {
  min-width: 80px;
  max-width: 80px;
}
@media (max-width: 767px) {
  .comment-box .comment-list .list > li .inner .avatar {
    max-width: 60px;
    min-width: 60px;
  }
}
.comment-box .comment-list .list > li .inner .avatar span {
  display: block;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  width: 100%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.07);
}
.comment-box .comment-list .list > li .inner .avatar span img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.comment-box .comment-list .list > li .inner .info {
  flex: 1;
  max-width: 100%;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .comment-box .comment-list .list > li .inner .info {
    padding-left: 12px;
  }
}
.comment-box .comment-list .list > li .inner .info .name h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #000;
}
.comment-box .comment-list .list > li .inner .info .note {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 6px;
}
.comment-box .comment-list .list > li .inner .info .desc {
  background: #f0f0f0;
  padding: 16px;
  position: relative;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.56;
  margin-bottom: 12px;
}
.comment-box .comment-list .list > li .inner .info .desc *:last-child {
  margin-bottom: 0;
}
.comment-box .comment-list .list > li .inner .info .tool a {
  border: 1px solid var(--second-Color);
  padding: 3px 6px 2px;
  display: inline-block;
  margin-right: 10px;
  line-height: 18px;
  font-size: 13px;
  border-radius: 3px;
}
.comment-box .comment-list .list > li .inner .info .tool a:hover {
  background: var(--second-Color);
  color: #fff;
}
.comment-box .comment-list .list > li .inner .info .tool a.date {
  border: 1px solid #ccc;
  color: #000;
}
.comment-box .comment-list .list > li .inner .info .tool a.date:hover {
  background: #ccc;
  color: #000;
}
.comment-box .comment-list .list ul.children {
  padding-left: 50px;
  list-style: none;
  margin: 0;
}
.comment-box .comment-list .list ul.children > li {
  display: block;
}
.comment-box .comment-list .list ul.children > li .inner {
  display: flex;
}
.comment-box .comment-list .list ul.children > li .inner .avatar {
  min-width: 50px;
  max-width: 50px;
}
@media (max-width: 767px) {
  .comment-box .comment-list .list ul.children > li .inner .avatar {
    min-width: 40px;
    max-width: 40px;
  }
}
.comment-box .comment-list .list ul.children > li .inner .avatar span {
  display: block;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  width: 100%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.07);
}
.comment-box .comment-list .list ul.children > li .inner .avatar span img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.comment-box .comment-list .list ul.children > li .inner .info {
  flex: 1;
  max-width: 100%;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .comment-box .comment-list .list ul.children > li .inner .info {
    padding-left: 12px;
  }
}
.comment-box .comment-list .list ul.children > li .inner .info .name h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #000;
}
.comment-box .comment-list .list ul.children > li .inner .info .note {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 6px;
}
.comment-box .comment-list .list ul.children > li .inner .info .desc {
  background: #f0f0f0;
  padding: 16px;
  position: relative;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.56;
  margin-bottom: 12px;
}
.comment-box .comment-list .list ul.children > li .inner .info .desc *:last-child {
  margin-bottom: 0;
}
.comment-box .comment-list .list ul.children > li .inner .info .tool a {
  border: 1px solid var(--second-Color);
  padding: 3px 6px 2px;
  display: inline-block;
  margin-right: 10px;
  line-height: 18px;
  font-size: 13px;
  border-radius: 3px;
}
.comment-box .comment-list .list ul.children > li .inner .info .tool a:hover {
  background: var(--second-Color);
  color: #fff;
}
.comment-box .comment-list .list ul.children > li .inner .info .tool a.date {
  border: 1px solid #ccc;
  color: #000;
}
.comment-box .comment-list .list ul.children > li .inner .info .tool a.date:hover {
  background: #ccc;
  color: #000;
}
.comment-box .comment-form .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--second-Color);
}
.comment-box .comment-form .cancel-comment-reply {
  font-size: 14px;
  margin-bottom: 10px;
}
.comment-box .comment-form form .form-group {
  padding-top: 8px;
  padding-bottom: 8px;
}
.comment-box .comment-form form .form-group input[type=text],
.comment-box .comment-form form .form-group input[type=email],
.comment-box .comment-form form .form-group textarea {
  border: 1px solid #ddd;
  outline: none;
  width: 100%;
  padding: 10px 16px;
  line-height: 20px;
  border-radius: 0px;
  font-size: 15px;
  font-weight: 400;
}
.comment-box .comment-form form .form-group input[type=text]:focus,
.comment-box .comment-form form .form-group input[type=email]:focus,
.comment-box .comment-form form .form-group textarea:focus {
  box-shadow: 0px 0px 6px 0px rgba(38, 40, 39, 0.27);
}
.comment-box .comment-form form .form-group div.error {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: red;
  margin-top: 8px;
}
.comment-box .comment-form form .form-submit {
  padding-top: 8px;
  position: relative;
}
.comment-box .comment-form form .form-submit input {
  border: 0;
  outline: none;
  font-size: 15px;
  text-transform: uppercase;
  background: #333;
  color: #fff;
  padding: 10px 24px;
  border-radius: 0px;
  line-height: 20px;
}

/** LOOP ============================================*/
.post_inner {
  position: relative;
  overflow: hidden;
}
.post_inner .image {
  position: relative;
  display: block;
  overflow: hidden;
}
.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%;
}
.post_inner .info {
  position: relative;
  padding-top: 12px;
}
.post_inner .info .meta {
  font-size: 14px;
  color: #444;
  font-weight: 400;
  position: relative;
  gap: 12px;
  display: inline-block;
  transition: 0.6s;
  z-index: 1;
}
.post_inner .info .meta span {
  display: flex;
  align-items: center;
  color: #000;
}
.post_inner .info .meta span i {
  height: 14px;
  width: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-right: 4px;
  filter: brightness(0);
}
.post_inner .info .title {
  display: block;
  margin: 10px 0 12px 0;
  font-weight: 600;
  transition: all 0.6s ease;
  position: relative;
  font-size: 15px;
  line-height: 20px;
  padding-bottom: 12px;
}
.post_inner .info .title::after {
  content: "";
  height: 1px;
  width: 45px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--second-Color);
}
.post_inner .info .title a {
  transition: all 0.3s ease;
  color: #000;
}
.post_inner .info .title a:hover {
  color: var(--hover-Color);
}
@media (max-width: 767px) {
  .post_inner .info .title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
  }
}
.post_inner .info .desc {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 68px;
}
.post_inner .info .more-x {
  display: block;
}
.post_inner .info .more-x a {
  color: var(--primary-Color);
  border: 1px solid #333;
  padding: 6px 16px;
  border-radius: 24px;
  line-height: 20px;
  transition: all 0.6s ease 0s;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  background: transparent;
  font-weight: 500;
}
.post_inner .info .more-x a svg {
  height: 12px;
  width: 12px;
  margin-left: 8px;
}
.post_inner .info .more-x a:hover {
  border-color: var(--second-Color);
  background: var(--second-Color);
  color: #fff;
}
.post_inner .info .more-x a:hover svg {
  fill: #fff;
}/*# sourceMappingURL=blog.css.map */