:root {
  --thm-color: #fe6a13;
  --black-color: #1a1a1a;
  --color-body: #74787c;
  --white-color: #ffffff;
  --bg-color: #f6f6f7;
  --border-color: #d9d9d9;
  --body-font: "Jost", sans-serif;
  --heading-font: "Cormorant Garamond", serif;
}

/*------------------- 4.00. Popup Search  -------------------*/
.header-search-popup {
  position: fixed;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  top: 0;
  left: 0;
  transform: translateY(-130%);
  transition: transform 600ms ease, opacity 600ms ease;
}

.header-search-popup.active {
  transform: translateY(0%);
}

.header-search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black-color);
  opacity: 0.8;
  cursor: pointer;
  z-index: -1;
}

.button.search-open {
  color: var(--black-color);
  font-weight: 500;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.button.search-open:hover {
  color: var(--thm-color);
}

.active.search-open:hover {
  background: unset !important;
}

.header-search-popup-content {
  width: 100%;
  max-width: 550px;
}

.header-search-popup-content form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.header-search-popup-content input[type="search"] {
  margin-bottom: 0;
}

.header-search-popup-content form button {
  border: none;
  outline: none;
  padding: 0;
  width: 70px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0px;
  border-radius: 0;
  background-color: var(--thm-color);
  color: var(--white-color);
  font-size: 18px;
}

/***************************************
     Slider Dote Style 
    ****************************************/

ul.slick-dots {
  margin-top: 30px;
}

.slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 1;
  margin-top: 47px;
}

.slick-dots li {
  position: relative;
  cursor: pointer;
  margin: 0 4px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 4px;
  height: 20px;
  width: 20px;
  display: inline-flex;
  justify-content: center;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.slick-dots li button {
  height: 8px;
  font-size: 0;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  border: none;
  padding: 4px;
  visibility: hidden;
}

.slick-dots li.slick-active button {
  background: var(--thm-color);
  visibility: visible;
}

.slick-dots li.slick-active {
  border: 2px solid var(--thm-color);
}

/*************************************
  ******** SHAPE  CONTROLL CSS  **********
*************************************/
.tp-section-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-repeat: no-repeat;
  pointer-events: none;
}

.shapeanimation {
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 9s;
  -webkit-animation-duration: 9s;
  z-index: -1;
}

/* custom animations */
@-webkit-keyframes shapeMover {

  0%,
  100% {
    -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    -webkit-transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes shapeMover {

  0%,
  100% {
    -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    -webkit-transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

/* --------- */


/***************************************
          VIDEO ICON STYLE 
****************************************/

.play-icon {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.play-icon>i {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.77);
  color: var(--white-color);
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
}

.play-icon:after,
.play-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.77);
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}


/* ***************************************** 
                   pagination  Style
 ******************************************/

.pagination-area {
  text-align: center;
  margin-top: 40px;
}

.pagination-area ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  gap: 15px;
}

.pagination-area ul li {
  display: inline-block;
}

.pagination-area ul li a {
  display: inline-flex;
  height: 55px;
  width: 55px;
  background-color: var(--bg-color);
  font-size: 18px;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.4s;
  color: var(--black-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.pagination-area ul li a:hover,
.pagination-area ul li a.current {
  background: var(--thm-color);
  color: var(--white-color);
}

/* ***************************************** 
         Footer Widget  Style
 ******************************************/

/* ----- company abaout Widget  ----*/

.company-about-wrapper .company-logo {
  margin-bottom: 29px;
}

.company-about-wrapper .widget-title {
  margin-bottom: 16px;
  color: var(--white-color);
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.company-about-dec {
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  margin-bottom: 27px;
}

.company-about-social {
  display: flex;
  gap: 10px;
}

.company-about-social a {
  display: flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #2C2C2C;
  color: var(--white-color);
  font-size: 14px;
  line-height: normal;
}

.company-about-social a:hover {
  background: var(--thm-color);
  color: var(--white-color);
}


/*------ Page Link Style --------*/

.merida-pageLink-item .widget-title {
  margin-bottom: 17px;
  position: relative;
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.merida-pageLink-item .widget-title {
  margin-bottom: 15px;
}

.merida-pageLink-item ul {
  margin: 0;
  padding: 0;
}

.merida-pageLink-item ul li {
  margin-bottom: 0 !important;
}

.merida-pageLink-item ul li a {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}

.merida-pageLink-item ul li a span {
  font-size: 14px;
  margin-right: 10px;
}

.widget-title.fborder:after {
  display: inline-block;
  content: "";
  bottom: -20px;
  opacity: 1;
  font-size: 20px;
  line-height: 1;
  height: 2px;
  width: 50px;
  background: var(--black-color);
  position: absolute;
  left: 0;
}

/* ------- footer contact widget ---------- */

.footer-contact-wrap .widget-title {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  margin-bottom: 20px;
}

.footer-contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: #2C2C2C;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.footer-contact-title {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.footer-contact-des {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.footer-contact-des a {
  color: var(--white-color);
}

.footer-contact-des a:hover {
  color: var(--thm-color);
}

/* -------- footer blgo widget ------*/
.footer-blogPost-wrp .widget-title {
  margin-bottom: 23px;
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.footer-blogPost-post-title {
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

.footer-blogPost-post-title a {
  color: var(--white-color);
}

.footer-blogPost-post-title a:hover {
  color: var(--thm-color);
}

.footer-blogPost-content ul {
  margin: 0;
  padding: 0;
}

.footer-blogPost-content ul li {
  list-style: none;
}

.footer-blogPost-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-blogPost-date {
  font-size: 14px;
  line-height: 17px;
  color: var(--white-color);
  font-weight: 300;
}

.footer-blogPost-date i {
  margin-right: 8px;
}

ul li:last-child .footer-blogPost-item {
  margin-bottom: 0;
}

.footer-blogPost-wrp .footer-blogPost-img img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  object-fit: cover;
}


/* --------- site bar Recent Post -------*/

.widget .meridacore-widget-post-thum li {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 0;
  padding-top: 5px;
}

.meridacore-widget-post-thum li img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  margin-right: 20px;
  min-width: 60px;
}

.meridacore-widget-post-thum .meridacore-widget-post-thum-content a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 5px;
}

.meridacore-widget-post-thum .meridacore-widget-post-thum-content a:hover {
  color: var(--thm-color);
}

.meridacore-widget-post-thum-content .recent-widget-date {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-color);
}

.meridacore-widget-post-thum-content .recent-widget-date i {
  margin-right: 8px;
}

/* ----- copyright widget style ---- */
.copyright-text {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #161616;
  padding: 18px 0;
  text-align: center;
}

.copyright-text a {
  color: var(--white-color);
}

.copyright-text a:hover {
  color: var(--thm-color);
}

/* ***************************************** 
                  WIDGET ADDONS CSS 
******************************************/

/* ------- Nav menu style ------- */
.widget_merida_nav_menu .widget-title {
  margin-bottom: 4px;
}

.widget_merida_nav_menu .menu li {
  border-bottom: 1px solid #E6E6E6;
}

/* ------- About Info  ------- */
.meridacore-about-widget-img img {
  margin-bottom: 22px;
  height: auto;
  width: auto;
  object-fit: cover;
}

.meridacore-about-widget-doc {
  margin-bottom: 27px;
}

.meridacore-about-widget-social ul li {
  display: inline-block;
}

.meridacore-about-widget-social ul li a {
  height: 45px;
  width: 45px;
  background: var(--thm-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: 0.4s;
}

.meridacore-about-widget-social ul li a:hover {
  background: var(--black-color);
}

/* ------- Company  Info  ------- */
.meridacore_company_info_widget .widget-title {
  margin-bottom: 21px;
}

.conpany-info-img img {
  margin-bottom: 14px;
}

/* ------- Company  Contact Info  ------- */
.company-contact-widget ul li {
  display: flex;
  gap: 15px;
}

.company-contact-widget ul li .icon {
  color: var(--black-color);
}

.company-contact-widget ul li .info {
  color: var(--black-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.meridacore-banner-dec p {
  margin-bottom: 22px;
}

/* ----------- company social icon widget -------- */
.merida-social-widgets-box ul li a {
  height: 40px;
  width: 40px;
  background: #15284c;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin-right: 8px;
  transition: 0.4s;
}

.merida-social-widgets-box ul li {
  display: inline-block;
}

/* ----------- company Newslatter  widget -------- */

.subscribe-form .mc4wp-form-fields button {
  position: absolute;
  right: 15px;
  top: 16px;
  font-size: 20px;
  /* line-height: 20px; */
}

.mc4wp-form-fields {
  position: relative;
}

/* ***************************************** 
                  Section Title Style
    ******************************************/
.merida-section-title-wrapper {
  display: flex;
  justify-content: flex-start;
}

.merida-section-title-content {
  text-align: center;
}

.merida-section-small-title {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--thm-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.merida-section-title {
  margin-bottom: 28px;
  color: var(--black-color);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.merida-section-description {
  color: var(--color-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.merida-section-title-content span {
  height: 50px;
  width: 1px;
  display: inline-block;
  background: var(--white-color);
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .merida-section-description {
    padding: 0px 150px;
  }
}

@media (max-width: 991px) {
  .merida-section-description {
    padding: 0px 100px;
  }
}

@media (max-width: 767px) {
  .merida-section-description {
    padding: 0px;
  }

  .merida-section-title-content span {
    display: none;
  }
}


/* ------------- Counter style ----------- */
.counter-v1-item {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.counter-v1-icon {
  font-size: 60px;
  display: inline-flex;
  height: 100px;
  width: 100px;
  align-items: center;
  justify-content: center;
}

.counter-v1-content {
  width: 100%;
}

.counter-v1-timer {
  border-bottom: 1px solid #efeffa;
  padding: 10px 30px;
}

.counter-v1-timer span {
  font-size: 90px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: #393939;
  stroke: #393939;
  color: transparent;
}

.counter-v1-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  padding: 17px 15px 16px;
}

/* -----------------------------
----------- Blog v1 style ------
------------------------------ */

.blog-v1-item {
  border: 1px solid #444240;
  background: #181714;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 33px;
  overflow: hidden;
}

.blog-v1-item.blog-v1-right {
  flex-direction: row;
  align-items: center;
}

.blog-v1-title {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 22px;
}

.blog-v1-title a {
  color: var(--white-color);
}

.blog-v1-title a:hover {
  color: var(--thm-color);
}

.blog-v1-meta-item {
  display: flex;
  gap: 40px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}

.blog-v1-meta-item a {
  color: var(--color-body);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
}

.blog-v1-meta-item a:after {
  content: "";
  height: 5px;
  width: 5px;
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  border-radius: 100px;
  background: var(--thm-color);
  left: -22px;
}

.blog-v1-meta-item a:first-child::after {
  content: unset;
}

.blog-v1-item .blog-v1-img.flx-img {
  width: 230px;
  height: 220px;
}

.blog-v1-item .blog-v1-img {
  height: 318px;
  position: relative;
  overflow: hidden;
}

.blog-v1-item .blog-v1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s;
}

.blog-v1-item:hover .blog-v1-img img {
  transform: scale(1.1);
}

.blog-v1-category a {
  color: var(--thm-color);
  text-align: center;
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: var(--white-color);
  width: max-content;
  padding: 8px 14px 6px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}

.blog-v1-img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgb(26 26 26 / 10%);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.4s;
}

.blog-v1-item:hover .blog-v1-img::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.blog-v1-btn.theme-btns {
  font-size: 14px;
  padding: 12px 30px;
}

.blog-v1-btn.theme-btns:before {
  background: var(--white-color);
}

.blog-v1-btn.theme-btns:hover {
  color: var(--black-color);
}

@media (max-width: 991px) {
  .blog-v1-item.blog-v1-right {
    flex-direction: column;
    align-items: unset;
  }

  .blog-v1-item .blog-v1-img,
  .blog-v1-item .blog-v1-img.flx-img {
    width: auto;
    height: auto;
  }
}


/* ***************************************** 
           BLOG V2 SYLE CSS 
******************************************/
.blog-v2-style {
  background: #F6F6F7;
  position: relative;
  margin-bottom: 25px;
}

.blog-v2-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 22px;
}

.blog-v2-title a {
  color: var(--black-color);
}

.blog-v1-title a:hover {
  color: var(--thm-color);
}

.blog-v2-meta-item {
  display: flex;
  gap: 40px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}

.blog-v2-meta-item a {
  color: var(--color-body);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
}

.blog-v2-meta-item a:after {
  content: "";
  height: 5px;
  width: 5px;
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  border-radius: 100px;
  background: var(--thm-color);
  left: -22px;
}

.blog-v2-meta-item a:first-child::after {
  content: unset;
}

.blog-v2-des {
  margin-bottom: 27px;
}

.blog-v2-content {
  padding: 25px 30px 30px;
}

.blog-v2-btn.theme-btns {
  font-size: 14px;
  padding: 12px 30px;
}

.blog-v2-style .blog-v2-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.blog-v2-style .blog-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s;
}

.blog-v2-style:hover .blog-v2-img img {
  transform: scale(1.1);
}

.blog-v2-category {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  margin-left: 15px;
  margin-top: 15px;
}

.blog-v2-category a {
  color: var(--thm-color);
  text-align: center;
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: var(--white-color);
  width: max-content;
  padding: 8px 14px 6px;
}

.blog-v2-img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgb(26 26 26 / 10%);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.4s;
}

.blog-v2-style:hover .blog-v2-img::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
  opacity: 1;
  width: 100%;
  height: 100%;
}

/* ***************************************** 
           BRAND LOGO SYLE CSS 
******************************************/
.brand-logo-v1-wrapper .container {
  position: relative;
}

.brand-logo-v1-wrapper .brand-logo-v1-img img {
  width: 100%;
}

.brand-logo-v1-wrapper .brand-logo-v1-img {
  overflow: hidden;
}

.brand-logo-v1-wrapper .brand-logo-v1-img a {
  display: block;
}

.no-slide {
  margin-bottom: 20px;
}

.brand-logo-v1-prev,
.brand-logo-v1-next {
  height: 50px;
  width: 50px;
  background: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--thm-color);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.brand-logo-v1-next {
  right: -100px;
}

.brand-logo-v1-prev {
  left: -100px;
}

.brand-logo-v1-arrow {
  display: flex;
  align-items: center;
}

.brand-logo-v1-prev:hover,
.brand-logo-v1-next:hover {
  background: var(--thm-color);
  color: var(--white-color);
}

@media (max-width: 1299px) {
  .brand-logo-v1-next {
    right: -50px;
  }

  .brand-logo-v1-prev {
    left: -50px;
  }
}

@media (max-width: 991px) {
  .brand-logo-v1-arrow {
    display: none;
  }
}

/* --------------------------------------- */
/* ----------- TEAM V1 STYLE ------------ */

.team-v1-box {
  background: var(--white-color);
  overflow: hidden;
  margin-bottom: 20px;
}

.team-v1-content-wrp {
  padding: 22px 30px 22px;
}

.team-v1-title {
  color: #1a1a1a;
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.team-v1-stitle {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 13px;
}

.team-v1-des {
  color: #74787c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.team-v1-box .team-v1-image {
  height: 400px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.team-v1-image:before {
  content: "";
  position: absolute;
  left: 6%;
  top: 6%;
  height: 0%;
  width: 0%;
  transition: all 0.5s ease 0s;
  z-index: 16;
}

.team-v1-box:hover .team-v1-image:before {
  height: 88%;
  width: 88%;
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.team-v1-box .team-v1-image::after {
  content: "";
  background: rgba(26, 26, 26, 0.60);
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  width: 0%;
  transition: all 0.4s ease 0s;
  z-index: 11;
  margin: auto;
}

.team-v1-box:hover .team-v1-image:after {
  height: 100%;
  width: 100%;
}

.team-v1-box .team-v1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s;
}

.team-v1-box:hover .team-v1-image img {
  transform: scale(1.1);
}

.team-v1-social {
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 1111;
}

.team-v1-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-v1-social ul li a,
button.team-v1-share {
  width: 50px;
  height: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-color);
  background: var(--white-color);
  margin-bottom: 10px;
}

.team-v1-social ul a {
  opacity: 0;
  transition: .4s;
  margin-top: -30px;
}

.team-v1-social:hover ul li a {
  opacity: 1;
  margin-top: 0px;
}

.team-v1-social:hover ul li:nth-child(1) a {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.team-v1-social:hover ul li:nth-child(2) a {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.team-v1-social:hover ul li:nth-child(3) a {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.team-v1-social:hover ul li:nth-child(4) a {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/* --------------------------------------- */
/* ----------- TEAM V2 STYLE ------------ */

.team-v2-box {
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #E4E4E4;
  background: #F6F6F7;
}

.team-v2-content-wrp {
  padding: 21px 30px 24px;
}

.team-v2-title {
  color: #1a1a1a;
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.team-v2-stitle {
  font-family: var(--body-font);
  color: var(--color-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.team-v2-box .team-v2-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.team-v2-box .team-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s;
}

.team-v2-box:hover .team-v2-image img {
  transform: scale(1.1);
}

.team-v2-social {
  background: var(--thm-color);
  width: max-content;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  position: absolute;
  right: -80%;
  bottom: 0;
  transition: 0.4s;
}

.team-v2-social a {
  color: var(--white-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.team-v2-social a:hover {
  color: var(--black-color);
}

.team-v2-box:hover .team-v2-social {
  right: 0%;
}


/* --------------------------------------- */
/* ----------- TEAM V3 STYLE ------------ */

.team-v3-image {
  height: 503px;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.team-v3-wrapper .team-v3-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transition: .4s;
  transform: scale(1);
}

.team-v3-wrapper .team-v3-image:hover img {
  filter: grayscale(1);
  transform: scale(1.1);
}

.team-v3-content-wrp {
  position: absolute;
  bottom: 0;
  margin: 30px;
  background: var(--black-color);
  overflow: hidden;
  padding: 26px 25px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 110px;
  transition: .4s;
  overflow: hidden;
}

.team-v3-image:hover .team-v3-content-wrp {
  height: 88%;
  justify-content: center;
}

.team-v3-stitle {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 18px;
}

.team-v3-title {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 7px;
}

.team-v3-title a {
  color: var(--white-color);
}

.team-v3-title a:hover {
  color: var(--thm-color);
}

.team-v3-des {
  opacity: 0;
  margin-bottom: 33px;
  color: var(--color-body);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  transition: .4s;
  text-align: center;
}

.team-v3-social {
  border-radius: 100px;
  background: #282722;
  padding: 18px 30px 17px;
  display: flex;
  gap: 22px;
  opacity: 0;
  transition: .4s;
}

.team-v3-social a {
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /* display: flex; */
}

.team-v3-image:hover .team-v3-des,
.team-v3-image:hover .team-v3-social {
  opacity: 1;
}

/* --------------------------------------- */
/* ----------- TEAM DETAILS STYLE ------------ */
.team-details-content-area {
  padding: 85px 90px 50px;
}

.team-details-wrapper .team-details-column {
  padding: 0;
}

.team-details-wrapper .team-details-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team-details-image {
  height: 700px;
}

.team-details-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
}

.team-details-designation {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 28px;
}

.team-details-des {
  color: var(--color-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 32px;
}

.team-details-social-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.team-details-social-area a {
  border-radius: 100px;
  background: var(--white-color);
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-details-social-area a:hover {
  color: var(--white-color);
  background: var(--thm-color);
}

.team-details-contact-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 72px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 18px;
}

.team-details-content-info {
  color: var(--color-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 46px;
  padding-left: 45px;
  position: relative;
}

.team-details-content-info::before {
  content: '';
  border-radius: 100%;
  background: var(--bg-color);
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #E9E9E9;
  width: 30px;
  height: 30px;
  transition: .3s;
  box-shadow: 0px 7px 27px rgba(0, 0, 0, 0.05);
}

.team-details-content-info::after {
  content: '';
  border-radius: 100%;
  background: var(--thm-color);
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
}

@media (max-width: 991px) {
  .team-details-wrapper .team-details-image img {
    width: auto;
  }
}

@media (max-width: 767px) {
  .team-details-content-area {
    padding: 46px 40px 50px;
  }

  .team-details-image {
    height: 500px;
  }

  .team-details-contact-title {
    font-size: 22px;
    margin-top: 50px;
  }
}

@media (max-width: 600px) {
  .team-details-image {
    height: 450px;
  }

  .team-details-title {
    font-size: 30px;
  }

  .team-details-content-area {
    padding: 46px 25px 50px;
  }
}

/* --------------------------------------- */
/* --------- TESTIMONIAL V1 STYLE -------- */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.testi-v1-box {
  border: 1px solid #444240;
  background: #181714;
  display: flex;
  width: 100%;
  padding: 80px;
  align-items: center;
  gap: 50px;
}

.testi-v1-title {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 19px;
}

.testi-v1-description {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 35px;
}

span.testi-v1-degination {
  color: var(--white-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

span.testi-v1-name {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.testi-v1-arrow {
  display: flex;
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 11;
}

.testi-v1-next,
.testi-v1-prev {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  background: var(--black-color);
  color: var(--white-color);
  display: flex;
  font-size: 24px;
  align-items: center;
  justify-content: center;
}

.testi-v1-next {
  background: var(--thm-color);
}

.testi-v1-next:hover,
.testi-v1-prev:hover {
  background: var(--white-color);
  color: #0c0a0a;
}

.testi-v1-box .testi-v1-img {
  position: relative;
  width: 300px;
  min-width: 300px;
  height: 300px;
}

.testi-v1-box .testi-v1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-v1-icon {
  font-size: 30px;
  font-weight: 800;
}

.testi-v1-icon {
  position: absolute;
  top: -25px;
  right: 25px;
  font-size: 30px;
  font-weight: 800;
}

@media (max-width: 991px) {
  .testi-v1-box {
    flex-direction: column;
    text-align: center;
  }

  .testi-v1-box {
    padding: 80px 50px 74px;

  }
}

@media (max-width: 767px) {

  .testi-v1-box {
    flex-direction: column;
    text-align: center;
  }

  .testi-v1-box .testi-v1-img {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }

  .testi-v1-box {
    padding: 80px 30px 74px;

  }

  .testi-v1-description {
    font-size: 24px;
    line-height: 36px;
  }

  .testi-v1-arrow {
    display: none;
  }
}

/* --------------------------------------- */
/* --------- TESTIMONIAL V2 STYLE -------- */

.testi-v2-item {
  border: 1px solid #444240;
  background: #181714;
  padding: 50px 60px 60px;
}

.testi-v2-des {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  /* 154.545% */
  margin-bottom: 30px;
}

h2.testi-v2-author-name {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2px;
}

.testi-v2-degination {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.testi-v2-ratting {
  color: var(--white-color);
  font-family: "Font Awesome 6 Pro";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  gap: 3px;
}

.testi-v2-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-v2-content-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi-v2-item .testi-v2-logo img {
  width: 70px;
  height: 70px;
  min-width: 70px;
}

.testi-v2-wrp .swiper-pagination-bullet {
  background: var(--thm-color);
  font-size: 30px;
  height: 20px;
  width: 20px;
}

.testi-v2-wrp .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -70px;
}

@media (max-width: 1600px) {
  .testi-v2-item {
    padding: 40px 50px 50px;
  }
}

@media (max-width: 767px) {
  .testi-v2-item {
    padding: 40px 30px 50px;
  }
}

@media (max-width: 600px) {
  .testi-v2-ratting {
    display: none;
  }
}


/* --------------------------------------- */
/* --------- TESTIMONIAL V3 STYLE -------- */

.testi-v3-ratting {
  display: flex;
  gap: 5px;
  margin-bottom: 31px;
}

.testi-v3-ratting i {
  background: #292929;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}

.testi-v3-des {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  border-bottom: 1px solid;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.testi-v3-logo {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.testi-v3-item .testi-v3-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testi-v3-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi-v3-author-name {
  color: #000;
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0px;
}

.testi-v3-degination {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

@media (max-width: 767px) {

  .testi-v3-des {
    font-size: 22px;
  }
}

/* --------------------------------------- */
/* ----------- SLIDER V1 STYLE ----------- */
.merida-table {
  display: table;
  height: 100%;
  width: 100%;
}

.merida-table-cell {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}

.merida-table-cell .row {
  align-items: center;
}

.slider-v1-content-box {
  position: relative;
  z-index: 1;
}

.slider-v1-item-bg {
  height: 850px;
  display: flex !important;
  align-items: center;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider-v1-item-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

span.slider-v1-icon {
  display: inline-block;
  margin-bottom: 23px;
}

.slider-v1-stitle {
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

.slider-v1-title {
  color: var(--white-color);
  font-family: var(--heading-font);
  margin-bottom: 34px;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 90px;
}

.slider-v1-des {
  color: var(--white-color);
  font-family: var(--body-font);
  position: relative;
  margin-bottom: 61px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.slider-v1-des span {
  height: 1px;
  width: 200px;
  background: #D9D9D9;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 6px;
  margin-left: 10px;
}

.slider-v1-btn a.theme-btns:before {
  background: var(--white-color);
}

.slider-v1-btn a.theme-btns:hover {
  color: var(--black-color);
}

.slider-v1-btn .theme-btns.two {
  border: 2px solid var(--white-color);
  background: transparent;
}

.slider-v1-btn {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
}

.slider-arrow-wrapper button {
  color: var(--white-color);
  font-family: "Font Awesome 6 Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.40);
  width: 105px;
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 11;
  transition: .4s;
}

.slider-arrow-wrapper button:hover {
  background: var(--white-color);
  color: var(--thm-color);
}

.slider-arrow-wrapper .slider-next {
  right: 100px;
}

.slider-arrow-wrapper .slider-prev {
  left: 100px;
}
.slider-v1-wrapper .slider-arrow-wrapper button img {
  object-fit: cover;
  min-height: 105px;
  min-width: 105px;
  border: 2px solid var(--white-color);
  border-radius: 100px;
}
@media (max-width: 1699px) {

  .slider-arrow-wrapper button {
    width: 90px;
    height: 90px;
  }

  .slider-arrow-wrapper .slider-next {
    right: 50px;
  }

  .slider-arrow-wrapper .slider-prev {
    left: 50px;
  }
}

@media (max-width: 1024px) {
  .slider-arrow-wrapper {
    display: none;
  }

  .slider-v1-title {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 767px) {

  .slider-v1-title {
    font-size: 60px;
    line-height: 70px;
  }

  .slider-v1-des {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (max-width: 500px) {

  .slider-v1-title {
    font-size: 50px;
    line-height: 62px;
  }

}

/* ========================================
    ========= ACCORDION STYLE CSS =============
    ========================================= */

.faq-accordion .accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  background: #F6F6F7;
}

.accordion-item .accordion-collapse {
  border: none;
}

.accordion-header .collapse:not(.show) {
  display: block;
}

.accordion-header .accordion-button:not(.collapsed) {
  color: var(--black-color);
  background: transparent;
}

.accordion-header .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\e93d";
  font-family: 'iconfont' !important;
  ;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button {
  border: none;
  color: var(--black-color);
  display: inline-block;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 18px 30px 18px 56px;
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.faq-accordion .accordion-button::after {
  position: absolute;
  left: 25px;
  background-image: none !important;
  content: "\e93e";
  font-family: 'iconfont' !important;
  ;
  color: #000000;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: auto;
}

.faq-accordion .accordion-body {
  padding: 0px 30px 22px;
  margin-top: -2px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.accordion-header .accordion-button:not(.collapsed):before {
  content: "";
  position: absolute;
  bottom: 0;
  background: transparent;
  height: 1px;
  width: 94%;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .faq-accordion .accordion-button {
    font-size: 16px;
    padding-right: 40px;
  }

  .faq-title {
    font-size: 36px;
    line-height: 46px;
  }
}

/*************************************
      ******** SERVBICE ONE CSS  **********
 *************************************/
.service-v1-box {
  text-align: center;
  border: 1px solid #F0F0F0;
  background: var(--white-color);
  box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 60px 40px 51px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 29px;
  transition: .4s;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.service-v1-shape:after {
  position: absolute;
  top: -300px;
  right: -100px;
  background: rgba(254, 106, 19, 0.10);
  width: 100%;
  height: 155px;
  content: '';
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 60%);
  transition: .4s;
}

.service-v1-shape:hover::after {
  top: 0;
  right: 0;
}

.service-v1-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}

.service-v1-title a {
  color: var(--black-color);
}

.service-v1-title a:hover {
  color: var(--thm-color);
}

.service-v1-des {
  color: var(--color-body);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.service-v1-des a {
  color: var(--color-body);
}

.service-v1-des a:hover {
  color: var(--thm-color);
}

.service-v1-icon {
  width: 130px;
  height: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rebeccapurple;
  border-radius: 100%;
  font-size: 65px;
  color: var(--white-color);
  transition: .4s;
  position: relative;
  z-index: 11;
}

.service-v1-content {
  position: relative;
  z-index: 11;
}

.service-v1-box:hover .service-v1-icon {
  transform: rotateY(180deg);
}

/*************************************
      ******** SERVBICE V2 CSS  **********
 *************************************/

.service-v2-box {
  width: 100%;
  height: 560px;
  flex-shrink: 0;
  background: rgba(15, 15, 15, 0.68);
  position: relative;
  overflow: hidden;
}

.service-v2-box:after {
  content: "";
  background: rgba(15, 15, 15, 0.68);
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 80%;
  width: 80%;
  transition: all 0.4s ease 0s;
  z-index: 11;
  margin: auto;
}

.service-v2-box:hover:after {
  opacity: 0.9;
  height: 100%;
  width: 100%;
}

.service-v2-item {
  text-align: center;
  position: absolute;
  z-index: 111;
  margin: 30px;
  bottom: 0;
  transition: .4s;
  transform: scale(.0);
  visibility: hidden;
}

.service-v2-box:hover .service-v2-item {
  transform: scale(1);
  visibility: visible;

}

.service-v2-box.active .service-v2-item {
  transform: scale(1);
  visibility: visible;
}

.service-v2-title {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-v2-des {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 9px;
}

a.service-v2-btn {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.service-v2-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(20px);
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  margin-top: -50px;
  transition: .4s;
  position: relative;
  bottom: -50px;
  z-index: 1;
  transition: .5s;
}

.service-v2-content {
  backdrop-filter: blur(25px);
  padding: 70px 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.60);
  transition: .4s;
  overflow: hidden;
}

.service-v2-box:hover .service-v2-icon {
  transform: rotateY(180deg);
}

/* --------------------------------------- */
/* --------- MERIDA TAB V1 STYLE ---------- */

.tab-v1-tabs-wrapper .tab-v1-tab {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  border: none;
  margin-bottom: 40px;
}

.tab-v1-tab.nav-tabs .nav-item.full_width {
  width: 100%;
}

.tab-v1-tab.nav-tabs .nav-link {
  background: var(--white-color);
  color: var(--black-color);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border: 1px solid;
  padding: 18px;
  width: 100%;
  border-radius: 0;
}

.tab-v1-tabs-wrapper .nav-tabs .nav-item.show .nav-link,
.tab-v1-tabs-wrapper .nav-tabs .nav-link.active,
.tab-v1-tabs-wrapper .nav-tabs .nav-link:focus,
.tab-v1-tabs-wrapper .nav-tabs .nav-link:hover {
  background: var(--thm-color);
  color: var(--white-color);
}

.tab-body-title {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* ---------------------------------------------------- */
/* ------------ WOOCOMMERCE PRODUCT WIDGET ----------- */

.woo-product-v1-tab-menu-wrap .nav {
  gap: 10px;
  margin-bottom: 70px;
  justify-content: flex-end;
}

.nav .nav-item .woo-product-v1-menu-btn {
  border: 1px solid #444240;
  background: var(--black-color);
  color: var(--white-color);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 14px 30px;
}

.nav .nav-item .woo-product-v1-menu-btn:hover,
.nav .nav-item .woo-product-v1-menu-btn.active {
  background: var(--thm-color);
  border-color: transparent;
}

.woo-product-v1-box {
  margin-bottom: 25px;
  transition: .4s;
}

.woo-product-v1-box .woo-product-v1-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.woo-product-v1-wrapper .woo-product-v1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: .4s;
}

.woo-product-v1-box:hover .woo-product-v1-image img {
  transform: scale(1.1);
}

.woo-product-v1-content-area {
  padding: 23px 30px 30px;
}

h4.woo-product-v1-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 3px;
}

.woo-product-v1-pricing {
  margin-bottom: 10px;
}

.woo-product-v1-pricing span.price {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.woo-product-v1-pricing .price ins {
  text-decoration: unset;
  margin-left: 5px;
}

.woo-product-v1-dec {
  color: var(--color-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 17px;
}

.woo-product-v1-btn .theme-btns {
  padding: 10px 20px;
  font-size: 14px;
  font-style: normal;
  background: var(--black-color);
}

.woo-product-v1-btn .theme-btns:before {
  background: var(--thm-color);
}

/* --------- Menu Style two ------- */
.woo-product-v1-menu-style-two .nav {
  gap: 30px;
  margin-bottom: 40px;
  justify-content: center;
}

.woo-product-v1-menu-style-two .nav-item .woo-product-v1-menu-btn {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  position: relative;
  padding-left: 55px;
}

.woo-product-v1-menu-style-two .nav-item .woo-product-v1-menu-btn::before {
  content: '';
  border-radius: 100%;
  background: var(--bg-color);
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #ECECEC;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.woo-product-v1-menu-style-two .nav-item .woo-product-v1-menu-btn.active::after {
  content: '';
  border-radius: 100%;
  background: var(--thm-color);
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
}

.woo-product-v1-menu-style-two .nav-item .woo-product-v1-menu-btn:hover,
.woo-product-v1-menu-style-two .nav-item .woo-product-v1-menu-btn.active {
  background: transparent;
}

/*************************************
    ******** SKILLBAR BOX CSS  **********
    *************************************/

.merida-skills-wrapper .skillbar-item {
  margin-bottom: 23px;
  display: inline-block;
  width: 100%;
}

.merida-skills-wrapper .skillbar-item .skill-title {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.merida-skills-wrapper .skillbar-item .skillbar {
  height: 8px;
  position: relative;
  text-align: right;
  border-radius: 2px;
  background: #E4E4E4;
  padding: 0;
}

.merida-skills-wrapper .skillbar-item .skillbar .skill-percent-count-wrap {
  position: absolute;
  right: 0;
  top: -37px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
}

.merida-skills-wrapper .skillbar-item .skillbar .count-bar {
  background: var(--thm-color);
  height: 100%;
  position: relative;
  text-align: right;
  position: relative;
  text-align: right;
  padding-right: 0;
  border-radius: 10px;
  overflow: visible !important;
  width: 0;
}

/* ---------------------------------------------------- */
/*------------ Contact Form Seven Style ------------- */

select.wpcf7-form-control.wpcf7-select {
  height: 62px;
  border: 1px solid #EAEAEA;
  background: var(--white-color);
  box-shadow: 0px 6px 36px 0px rgba(12, 8, 8, 0.00);
  margin-bottom: 20px;
  padding: 18px 20px;
  appearance: none;
  color: var(--color-body);

}

.select-option {
  position: relative;
}

.select-option::after {
  content: "\f078";
  position: absolute;
  font-family: "Font Awesome 5 free";
  font-weight: 800;
  top: 49%;
  transform: translate(0px, -50%);
  color: #74787C;
  bottom: 0;
  right: 20px;
}

.merida-user .wpcf7-form-control-wrap:before,
.merida-email .wpcf7-form-control-wrap:before {
  position: absolute;
  font-family: "Font Awesome 5 free";
  font-weight: 800;
  top: 60%;
  transform: translate(0px, -50%);
  color: #74787C;
  right: 20px;
}

.merida-user .wpcf7-form-control-wrap:before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
}

.merida-email .wpcf7-form-control-wrap:before {
  content: "\f32f";
  font-family: bootstrap-icons !important;
}

.merida-input-area label {
  color: var(--title, #1A1A1A);
  font-family: Jost;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 13px;
  display: inline-block;
}

/* -------------------------------------- */
/* ----------- Product Mneu List --------- */

.product-menu-list-box {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 23px;
  border-bottom: 1px dashed #3A3A3A;
  padding-bottom: 23px;
}

.product-menu-list-box:last-child {
  border: none !important;
  padding: 0 !important;
}

.product-menu-list-box-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 25px;
  align-items: center;
}

.product-menu-list-content {
  width: 100%;
}

.product-menu-list-line {
  width: min-content;
  display: flex;
  border-bottom: 1px solid #2D2D2E;
  width: 100%;
  position: relative;
}

.product-menu-list-title {
  width: 100%;
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product-menu-list-title {
  color: var(--white-color);
}

.product-menu-list-des {
  color: #A7A7A7;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-menu-list-price {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;

}

.product-menu-list-price ins {
  text-decoration: unset;
}

.product-menu-list-price del {
  opacity: 0.5;
}

.product-menu-img {
  border-radius: 100px;
  overflow: hidden;
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}

.product-menu-list-wrapper .product-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: .4s;
}

.product-menu-list-box:hover .product-menu-img img {
  transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .product-menu-list-box {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .product-menu-img {
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    height: 380px;
    flex-shrink: 0;
  }

  .product-menu-list-line {
    width: 30%;
  }
}

@media screen and (max-width: 400px) {
  .product-menu-list-line {
    width: 0;
    display: none;
  }
}

/* ----------- Product --------- */

.woo-product-v2-rating .star-rating {
  overflow: hidden;
  position: relative;
  height: 20px;
  width: 5.4em;
  font-family: WooCommerce;
  display: block;
  float: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.woo-product-v2-rating .star-rating::before {
  content: "sssss";
  color: var(--thm-color);
  float: left;
  top: 0;
  left: 0;
  position: absolute
}

.woo-product-v2-rating .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.woo-product-v2-rating .star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--thm-color);
}



/* ----- */
.woo-product-v2-box {
  border: 1px solid #EAEAEA;
  background: var(--white-color);
  margin-bottom: 25px;
  overflow: hidden;
}

.woo-product-v2-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 25px;
  gap: 30px;
}

.woo-product-v2-cart .added_to_cart,
.woo-product-v2-cart .button.add_to_cart_button.ajax_add_to_cart {
  position: relative;
  font-size: 0;
}

.woo-product-v2-cart .button.add_to_cart_button.ajax_add_to_cart:after {
  content: "\e989";
  font-family: 'iconfont' !important;
  width: 45px;
  height: 45px;
  background: #F6F6F7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 16px;
  margin: auto;
}

.woo-product-v2-cart .button.add_to_cart_button.ajax_add_to_cart.added::after {
  content: unset;
  display: none;
}

.woo-product-v2-cart .added_to_cart::after {
  content: "\e989";
  font-family: 'iconfont' !important;
  background: var(--thm-color);
  color: var(--white-color);
  font-family: 'iconfont' !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 16px;
  margin: auto;
}

.woo-product-v2-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 6px;
}

.woo-product-v2-price ins {
  text-decoration: unset;
  margin-left: 5px;
}

.woo-product-v2-price {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

}

.woo-product-v2-box .woo-product-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: .4s;
}

.woo-product-v2-img {
  height: 355px;
  position: relative;
  overflow: hidden;
}

.woo-product-v2-box:hover .woo-product-v2-img img {
  transform: scale(1.1);
}