: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: 0.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(--bg-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 {
  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;
  width: 100%;
}

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

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

/* --------- */
.swiper-pagination-bullets {
  text-align: center;
}

.swiper-pagination-bullets span.swiper-pagination-bullet {
  height: 14px;
  width: 14px;
  background: 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:hover {
  color: var(--thm-color);
}

.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;
  padding: 6px 0;
}

.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-widgets .widget-title {
  margin-bottom: 13px;
}

.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;
}
.silder-hero-title-box {
  position: relative;
  overflow: hidden;
}

.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: 500;
  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 {
  min-width: 230px;
  height: 220px;
  width: 220px;
}

.blog-v1-item .blog-v1-img {
  height: 326px;
  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: var(--bg-color);
  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 .swiper-wrapper {
  align-items: center;
}

.brand-logo-v1-wrapper .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: center;
}

.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.6);
  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;
  filter: grayscale(0);
}

.team-v1-box:hover .team-v1-image img {
  transform: scale(1.1);
  filter: grayscale(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: 0.4s;
  margin-top: -30px;
}

.team-v1-social:hover ul li a {
  opacity: 1;
  margin-top: 0px;
}
.team-v1-social:hover ul li a:hover {
  background: var(--thm-color);
  color: var(--white-color);
}
.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: var(--bg-color);
}

.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: 1px;
}

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

.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: 0.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: 0.4s;
  overflow: hidden;
  left: 0;
  right: 0;
}

.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: 0.4s;
  text-align: center;
}

.team-v3-social {
  border-radius: 100px;
  background: #282722;
  padding: 18px 30px 17px;
  display: flex;
  gap: 22px;
  opacity: 0;
  transition: 0.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: 0.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: #000000;
  color: var(--white-color);
  display: flex;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  transition: .4s;
}

.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;
  }

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

@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: 20px;
    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: var(--white-color);
}

.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.4);
  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: 0.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: var(--bg-color);
}

.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: 0.4s;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.service-v1-shape:after {
  position: absolute;
  top: -300px;
  right: -100px;
  background: rgba(254, 106, 19, 0.1);
  width: 100%;
  height: 155px;
  content: "";
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 60%);
  transition: 0.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: var(--thm-color);
  border-radius: 100%;
  font-size: 65px;
  color: var(--white-color);
  transition: 0.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;
  margin-bottom: 25px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.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.active:after,
.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: 0.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.6);
  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: 0.4s;
  position: relative;
  bottom: -50px;
  z-index: 1;
  transition: 0.5s;
}

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

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

@media screen and (max-width: 1199px) {
  .service-v2-box {
    height: 500px;
  }
}

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

@media screen and (max-width: 767px) {
  .tab-v1-tabs-wrapper .tab-v1-tab {
    flex-wrap: wrap;
  }
}

/* ---------------------------------------------------- */
/* ------------ 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: 0.4s;
  background: var(--white-color);
}

.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: 0.4s;
}

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

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

.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);
}

@media screen and (max-width: 600px) {
  .woo-product-v1-box .woo-product-v1-image {
    height: auto;
  }
}

/* --------- 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: 0.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: 60px;
  border: 1px solid #eaeaea;
  background: var(--white-color);
  box-shadow: 0px 6px 36px 0px rgba(12, 8, 8, 0);
  margin-bottom: 20px;
  padding: 18px 20px;
  appearance: none;
  color: var(--color-body);
  border-radius: 0;
}

/* 
.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;
}

.merida-input-area .form-control:focus {
  color: unset;
  background-color: unset;
  border: 1px solid rgba(26, 26, 26, 0.12);
  outline: 0;
  box-shadow: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

/* -------------------------------------- */
/* ----------- 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: 60%;
  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 a {
  color: var(--white-color);
}

.product-menu-list-title a:hover {
  color: var(--thm-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;
  position: relative;
}

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

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

.product-menuu-list-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  bottom: 0;
  background: var(--thm-color);
  margin: 8px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  opacity: 0;
}

.product-menu-list-box:hover .product-menuu-list-card {
  top: 0;
  opacity: 1;
}

.product-menuu-list-card .added_to_cart,
.product-menuu-list-card .button.add_to_cart_button.ajax_add_to_cart {
  position: relative;
  font-size: 0 !important;
  line-height: 0;
}

.product-menuu-list-card .button.add_to_cart_button.ajax_add_to_cart:after {
  content: "\e989";
  font-family: "iconfont" !important;
  display: flex;
  font-size: 16px;
  margin-top: 2px;
  color: var(--white-color);
}

.product-menuu-list-card .button.add_to_cart_button.ajax_add_to_cart.added::after {
  content: unset;
  display: none;
}

.product-menuu-list-card .added_to_cart::after {
  display: flex;
  font-size: 16px;
  margin-top: 2px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f07a";
  color: var(--white-color);
}

@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: 350px;
    flex-shrink: 0;
  }

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

  .product-menuu-list-card {
    border-radius: 0;
  }
}

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

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

.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;
}

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

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

.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 !important;
}

.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: var(--bg-color);
  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: 0.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);
}

/* -------- Header Template One Style ----------- */
header.header-area.header-template-one.absolut {
  position: absolute;
  width: 100%;
  z-index: 1;
  width: -webkit-fill-available;
}

.header-template-one .header-logo {
  margin-bottom: 0;
  padding: 0 10px;
}
.header-template-one .header-logo h2 ,
.merida-header-title{
	 	margin-bottom: 0;
		color: var(--title, #1A1A1A);
		font-size: 42px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
        text-transform: uppercase;
}

.header-template-one .header-logo img {
  max-width: 200px;
}

.header-template-one .mobile-logo img {
  max-width: 250px;
  height: 100%;
}

.header-template-one .merida-menu-toggle {
  background: var(--black-color);
  color: var(--white-color);
}

.header-template-one .merida-menu-toggle:hover {
  background: var(--thm-color);
}

.header-one-content-area {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu>ul>li:first-child>a {
  margin-left: 0;
}

.main-menu>ul>li:last-child>a {
  margin-right: 0;
}

@media screen and (max-width: 991px) {
  .header-template-one .row {
    padding: 10px 0;
  }
}

/* ------------ Login And Register Icon Style --------------- */

.login-register-iocn-area {
  position: relative;
  display: inline-block;
}

.login-register-iocn {
  display: flex;
  font-size: 18px;
  color: var(--black-color);
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}

.login-register-text {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  transition: 0.3s;
  opacity: 0;
}

.login-register-iocn-area:hover .login-register-text {
  display: block;
  opacity: 1;
}

.login-register-text a {
  background: var(--white-color);
  padding: 10px 20px;
  border: 1px solid var(--bg-color);
  color: var(--black-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 35px;
}

/* ------------ OFF CANVAS STYLE ----------- */

.button.offCanvas-open {
  transition: 0.4s;
  width: 55px;
  height: 55px;
  padding: 0;
  font-size: 22px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-color);
  color: var(--white-color);
  cursor: pointer;
  border: 1px solid #292929;
}

.button.offCanvas-open:hover {
  background-color: var(--thm-color);
  color: var(--white-color);
}

.offCanvas-open.canva-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: var(--thm-color);
  color: var(--white-color);
}

.offCanvas-open.canva-close:hover {
  background: var(--black-color);
}

.offCanvas-content-area {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  left: auto;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 40px;
  display: flex;
  transform: translateX(130%);
  transition: transform 600ms ease, opacity 600ms ease;
  -webkit-transition: transform 600ms ease, opacity 600ms ease;
  -o-transition: transform 600ms ease, opacity 600ms ease;
  background: var(--white-color);
  border-left: 2px solid var(--thm-color);
}

.offCanvas-content-wrp.active .offCanvas-content-area {
  transform: translateX(0%);
}

.offCanvas-logo {
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 260px;
}

.offCanvas-logo a {
  color: var(--black-color);
}

.offCanvas-logo a:hover {
  color: var(--black-color);
}

.offCanvas-desc {
  margin-bottom: 24px;
}

.offCanvas-contact-info {
  margin-bottom: 40px;
  font-weight: 500;
}

.offCanvas-contact-label {
  font-weight: 500;
  margin-bottom: 22px;
  font-family: var(--body-font);
}

.offCanvas-contact-info ul {
  margin: 0;
  padding: 0;
}

.offCanvas-contact-info ul li {
  list-style: none;
  margin-bottom: 15px;
}

.offCanvas-contact-info ul li i {
  color: var(--white-color);
  width: 30px;
  height: 30px;
  background: var(--thm-color);
  display: inline-block;
  text-align: center;
  border-radius: 0;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offCanvas-social-area {
  gap: 10px;
  margin-top: 38px;
  display: flex;
}

.offCanvas-social-area a {
  color: var(--white-color);
  width: 40px;
  height: 40px;
  background: var(--black-color);
  display: flex;
  text-align: center;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

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

.offCanvas-toggle a {
  position: absolute;
  display: inline-block;
  transition: 0.5s;
  top: 20px;
  right: 25px;
  color: var(--white-color);
  opacity: 1;
  font-size: 20px;
  background: var(--thm-color);
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

/* ------------ NEWSLATTER FORM ONE ---------- */

.newsletter-form-v1 {
  align-items: center;
  position: relative;
}

.newsletter-form-v1 .wpcf7-form-control.wpcf7-email {
  flex: 1;
  padding: 16px;
  border: 1px solid #ccc;
  margin-bottom: 0;
}

.newsletter-form-v1 .wpcf7-submit {
  cursor: pointer;
  border-radius: 100px;
  font-size: 15px;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: unset;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--black-color);
  color: var(--white-color);
  font-weight: 500;
  border: none;
  transform: translate(0px, -15px);
}

.newsletter-form-v1 .wpcf7-submit:hover {
  background-color: var(--thm-color);
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7 form .wpcf7-response-output {
  border: 2px solid var(--thm-color);
  position: absolute;
  margin-top: 45px;
  margin-left: 0px;
}

.wpcf7-not-valid-tip {
  position: absolute;
  margin-top: 10px;
}

.full-width button.theme-btns {
  width: 100%;
}

/* ------------ NEWSLATTER FORM Two ---------- */
.newsletter-form-v2 {
  position: relative;
}

.newsletter-form-v2 input[type="email"] {
  margin: 0;
  padding: 14px;
}

.newsletter-form-v2 button.theme-btns {
  position: absolute;
  right: 0;
  padding: 15px 30px;
  line-height: 24px;
  top: 0;
}

/* ---------------- MERIDA ICON LIST ------------ */

.merida-icon-list-icon {
  border: 1px solid #efefef;
  background: var(--bg-color);
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-color);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.merida-icon-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.merida-icon-list-title {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* --------- Icon Box style css ---------- */

.merida-icon-box-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.merida-icon-box-icon {
  background: #fff7f4;
  border-radius: 100%;
  min-width: 100px;
  min-height: 100px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--thm-color);
}

.merida-icon-box-icon.after-border:after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  height: 100%;
  width: 100%;
  border: 1px solid var(--thm-color);
  border-radius: 50%;
  transition: 0.4s;
}

.merida-icon-box-title {
  color: #666861;
  font-family: "Cormorant Garamond";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
}

.merida-icon-box-des {
  color: var(--body-font);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}

.merida-icon-box-item:hover .merida-icon-box-icon:after {
  left: 0;
  top: 0;
}

/* ------------   woocommerce product V3------------- */

.woo-product-v3-box {
  padding: 30px;
  padding-top: 35px;
  margin-bottom: 30px;
  margin-top: 126px;
  text-align: center;
  position: relative;
  background: var(--white-color);
}

.woo-product-v3-box .woo-product-v3-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  border-radius: 100px;
  overflow: hidden;
  border: 5px solid var(--white-color);
  position: relative;
  display: inline-block;
  margin-top: -120px;
  box-shadow: 0px 12px 16.8px 0px rgba(73, 73, 73, 0.38);
  margin-bottom: 15px;
  transform: scale(1);
  transition: 0.4s;
}

.woo-product-v3-box:hover .woo-product-v3-img img {
  rotate: 10deg;
}

.woo-product-v3-title {
  color: var(--title, #1a1a1a);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}

.woo-product-v3-price {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}

.woo-product-v3-dec {
  margin-bottom: 17px;
}

.woo-product-v3-cart .theme-btns {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px 20px;
}

.woo-product-v3-wrp .swiper-pagination {
  margin-bottom: -50px;
}

.woo-product-v3-wrp .swiper-pagination span.swiper-pagination-bullet {
  height: 14px;
  width: 14px;
  background: var(--thm-color);
}

.woo-product-v3-img {
  position: relative;
}

.woo-product-v3-img {
  text-decoration: none;
  color: black;
  cursor: default;
  font-weight: normal;
}

.woo-product-v3-img span {
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -150px;
  background: var(--thm-color);
  font-size: 0.8em;
  padding: 5px 8px;
  cursor: default;
  transition: 0.4s;
  opacity: 0;
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}
.woo-product-v3-box:hover .woo-product-v3-img span,
.swiper-slide-active .woo-product-v3-box .woo-product-v3-img span {
  visibility: visible;
  opacity: 1;
  top: -160px;
}

/* /* ------- woocommerce Product V4 ----------- */

.woo-product-v4-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}

.woo-product-v4-tab-menu-wrap {
  border-radius: 15px;
  background: var(--white-color);
  box-shadow: 15px 6px 5.6px 0px rgba(246, 244, 244, 0.43);
  padding: 40px 20px;
  margin-bottom: 20px;
}

.woo-product-v4-box {
  background-size: cover;
  width: 100%;
  border-radius: 10px;
  height: 299px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
}

.woo-product-v4-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--white-color);
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(3.799999952316284px);
  transform: scale(0.4);
  transition: 0.4s;
  opacity: 0;
}

.woo-product-v4-box:hover .woo-product-v4-item {
  transform: scale(1);
  opacity: 1;
}

.woo-product-v4-content-area {
  text-align: center;
}

.woo-product-v4-title a {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.woo-product-v4-pricing {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 39px;
}

.woo-product-v4-wrapper .theme-btns {
  color: var(--thm-color);
  text-align: center;
  font-family: Jost;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: var(--white-color);
  padding: 10px 20px;
}

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

.woo-product-v4-wrapper .tab-content {
  width: 100%;
}

.woo-product-v4-wrapper .nav-item .nav-link {
  display: flex;
  border-radius: 5px;
  width: 301px;
  justify-content: space-between;
  color: rgba(26, 26, 26, 0.81);
  font-family: Jost;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  border: transparent;
  margin-bottom: 5px;
  padding: 12px 20px 12px;
  background: transparent;
}
.woo-product-v4-wrapper .nav-item:last-child .nav-link {
    margin-bottom: 0 !important;
}
.woo-product-v4-wrapper .nav-item .nav-link.active {
  background: var(--thm-color);
  color: var(--white-color);
}

.woo-product-nev-text span {
  margin-right: 7px;
}

.woo-product-v4-wrapper .nav.woo-product-v4-tab-menu {
  display: block;
}

@media (max-width: 991px) {
  .woo-product-v4-wrapper {
    flex-direction: column;
  }

  .woo-product-v4-wrapper .nav-item .nav-link {
    width: 100%;
  }

  .woo-product-v4-tab-menu-wrap {
    margin-bottom: 0px;
  }
}

/* -----------------  PRODUCT BANNER STYLE ----------- */

.product-banner-v1-box {
  padding: 50px 30px 60px 50px;
  margin-bottom: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 111;
  background: #f6f6f6;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-banner-v1-box .product-banner-v1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;

}

.product-banner-v1-title {
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 133.333% */
  text-transform: uppercase;
}

.product-banner-v1-price {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 111.111% */
  text-transform: uppercase;
  margin-bottom: 35px;
}

.product-banner-v1-box .theme-btns {
  color: var(--white-color);
  text-align: center;
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 11px 22px;

}

.product-banner-v1-wrapper .container {
  position: relative;
}

.product-banner-v1-arrow {
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 70px;
  z-index: 11;
}

.product-banner-v1-next,
.product-banner-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;
  transition: 0.4s;
}

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

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

/* Prduct Banner style two -------- */
.product-banner-v1-style-two .product-banner-v1-box:hover .product-banner-v1-img img {
  transform: rotate(30deg);
}

.product-banner-v1-after-border {
  position: relative;
  transition: 0.4s;
}

.product-banner-v1-after-border:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 87%;
  width: 100%;
  border: 1px solid var(--thm-color);
  transition: 0.4s;
}

.product-banner-v1-style-two .product-banner-v1-after-border:hover .product-banner-v1-box {
  margin-left: 1px;
  margin-right: 1px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.product-banner-v1-style-two .product-banner-v1-after-border:hover::before {
  bottom: -1px;
}

.product-banner-v1-style-two .product-banner-v1-box {
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 45px;
  transition: 0.4s;
}

.product-banner-v1-style-two .product-banner-v1-price {
  margin-bottom: 21px;
}

.product-banner-v1-style-two .product-banner-v1-title {
  color: var(--black-color);
  margin-bottom: 30px;
}

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

@media (max-width: 767px) {
  .product-banner-v1-box {
    padding: 50px 30px 60px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 500px) {
  .product-banner-v1-box {
    padding: 50px 20px 60px;
    flex-direction: column;
    gap: 20px;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .product-banner-v1-title {
    font-size: 26px;
    line-height: 36px;
  }
}

/* ------------ TESTIMONIAL V4 STYLE ---------- */

.testi-v4-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testi-v4-wrapper .mySwiper2 {
  height: 80%;
  width: 100%;
}

.testi-v4-wrapper .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.testi-v4-wrapper .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}

.testi-v4-box {
  text-align: center;
}

.testi-v4-description {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 48px;
}

.testi-v4-title {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 200% */
  text-decoration-line: underline;
  margin-bottom: 23px;
}

.testi-v4-clint-area {
  display: flex;
  gap: 24px;
  align-items: center;
}

.testi-v4-clint-area .testi-v4-clint-img img {
  min-width: 95px;
  height: 95px;
  border-radius: 100px;
  border: 1px solid #f6d7be;
  padding: 7px;
  transition: 0.4s;
}

.swiper-slide-thumb-active .testi-v4-clint-area .testi-v4-clint-img img {
  border-color: var(--thm-color);
}

.testi-v4-clint-ratting {
  color: var(--thm-color);
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 18px;
  display: flex;
  gap: 2px;
  align-items: center;
  margin-bottom: 3px;
}

.testi-v4-clint-name {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 150% */
  text-transform: uppercase;
}

.testi-v4-clint-designation {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

.swiper-thumbs .swiper-wrapper {
  border-top: 5px solid var(--black-color);
}

.testi-v4-client-wrapper .swiper-slide {
  padding-top: 40px;
  position: relative;
  transition: 0.4s;
}

.swiper-slide-thumb-active::after {
  content: "";
  height: 5px;
  width: 100%;
  background: var(--thm-color);
  position: absolute;
  top: -5px;
}

.testi-v4-wrapper .testi-v4-swiper-pagination .swiper-pagination-bullet {
  height: 19px;
  width: 19px;
  background: var(--thm-color);
  position: relative;
  margin: 0 6px !important;
}

.testi-v4-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  left: -5px;
  top: -5px;
  margin: auto;
  content: "";
  border: 1px solid var(--thm-color);
  height: 150%;
  width: 150%;
  border-radius: 100px;
}

.testi-v4-wrapper .testi-v4-swiper-pagination.swiper-pagination-bullets {
  margin-bottom: -65px;
  position: absolute;
  text-align: center;
}

@media (max-width: 991px) {
  .testi-v4-description {
    font-size: 24px;
    line-height: normal;
  }
}

/************* ********** *******************/
/************* News Blog five Style ********/
/************* ********** *****************/

.blog-v3-box {
  position: relative;
  margin-bottom: 25px;
}

.blog-v3-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-v3-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(180deg,
      rgba(36, 35, 29, 0) 0%,
      #181714 99.99%,
      rgba(36, 35, 29, 0) 90%);
}

.blog-v3-box .blog-v3-img {
  height: 500px;
}

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

.blog-v3-box:hover .blog-v3-img img {
  transform: scale(1.1);
}

.blog-v3 .post-info {
  margin-bottom: 7px;
  padding-left: 0;
}

.blog-v3-content .post-info li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  color: var(--white-color);
  font-weight: 500;
  margin-right: 30px;
}

.blog-v3-content .post-info li:last-child {
  margin: 0px;
}

.blog-v3-content .post-info li i {
  margin-right: 5px;
}

.blog-v3-content {
  position: absolute;
  bottom: 0;
  padding: 31px 30px;
  z-index: 1;
}

.blog-v3-title {
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 0;
  margin-top: 8px;
}

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

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

.blog-v3-meta ul {
  margin: 0;
  padding: 0;
}

.blog-v3-meta ul li {
  list-style: none;
  display: inline-block;
  padding-left: 20px;
  padding-right: 15px;
  position: relative;
}

.blog-v3-meta ul li i {
  display: none;
}

.blog-v3-meta ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--thm-color);
  margin: auto;
  border-radius: 100px;
}

.blog-v3-meta ul li:first-child {
  padding-left: 0 !important;
}

.blog-v3-meta ul li:first-child:after {
  content: unset;
}

.blog-v3-meta ul li span,
.blog-v3-meta ul li a {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.blog-v3-meta ul li a:hover {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .blog-v3-box .blog-v3-img {
    height: 400px;
  }
}

/* ----------- TESTIMONIAL FIVE STYLE --------- */

.testi-v5-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 100px;
  margin-bottom: 23px;
  display: inline-block;
}

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

.testi-v5-name {
  color: var(--black-color);
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.testi-v5-degination {
  color: var(--thm-color);
  font-family: "Cormorant Garamond";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  /* 214.286% */
  text-transform: uppercase;
  margin-bottom: 28px;
}

.testi-v5-description {
  color: #797979;
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
}

.testi-v5-box {
  text-align: center;
  padding: 65px 40px 56px;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #ececec;
  background: linear-gradient(115deg, #fff1e7 6.33%, #fff 81.74%);
}

.swiper-slide .testi-v5-box {
  margin-bottom: 0;
}

.testi-v5-icon {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 60px;
  color: var(--thm-color);
  transition: 0.4s;
  opacity: 0;
}

.swiper-slide-active .testi-v5-box .testi-v5-icon {
  right: 40px;
  top: 40px;
  opacity: 1;
}

.testi-v5-swiper-pagination {
  margin-top: 40px;
}

/* ---------- TEAM V4 STYLE ----------- */

.team-v4-box {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.team-v4-stitle {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.team-v4-title {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  text-transform: uppercase;
}

.team-v4-image {
  width: 215px;
  height: 295px;
  display: inline-block;
  position: relative;
  margin-bottom: 26px;
  margin-top: 15px;
}

.team-v4-box .team-v4-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 100%;
  filter: grayscale(0);
  transition: 0.4s;
}

.team-v4-box .team-v4-image:hover img {
  filter: grayscale(1);
}

.team-v4-image:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: -15px;
  border: 1px solid var(--thm-color);
  border-radius: 100%;
  top: -15px;
  transition: .4s;
}

.team-v4-box:hover .team-v4-image:after {
  left: 0px;
  top: 0px;
}

.team-v4-image::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
}

.team-v4-image:hover::before {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 500ms linear;
}

.team-v4-social {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1111;
}

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

.team-v4-social ul li a,
button.team-v4-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: 8px;
  border-radius: 100%;
  border: 1px solid var(--thm-color);
}

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

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

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

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

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

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

/* ------- BLOG V4 STYLE ---------- */

.blog-v4-item {}

.blog-v4-title {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  text-transform: capitalize;
}

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

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

.blog-v4-meta-item a {
  color: var(--color-body);
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.blog-v4-meta-item a i {
  display: none;
}

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

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

a.blog-v4-btn.blog-v4-btn {
  color: var(--color-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration: underline;
}

.blog-v4-item .blog-v4-img.flx-img {
  min-width: 364px;
  width: 364px;
  height: 242px;
}

.blog-v4-item .blog-v4-img {
  position: relative;
  overflow: hidden;
  height: 300px;
  flex-shrink: 0;
}

.blog-v4-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: 15px;
  left: 15px;
  z-index: 11;
}

.blog-v4-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  border: 1px solid #e3e5de;
  background: var(--white-color);
}

.blog-v4-item.blog-v4-left {
  flex-direction: row;
  align-items: center;
}

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

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

.blog-v4-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-v4-item:hover .blog-v4-img::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.blog-v4-content {
  padding: 2px 30px 34px;
}

.blog-v4-left .blog-v4-content {
  padding: 30px 30px 30px 0px;
}

@media (max-width: 1399px) {
  .blog-v4-item .blog-v4-img.flx-img {
    min-width: 300px;
    width: 300px;
  }
}

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

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

  .blog-v4-left .blog-v4-content {
    padding: 2px 30px 34px;
  }
}

/* --------- wOOCOMMERCE PORDUCT V5 STYLE ---------- */

.woo-product-v5-tab-menu-wrap .nav {
  gap: 32px;
  margin-bottom: 40px;
  justify-content: center;
  background: var(--white-color);
  padding: 30px;
}

.nav-item .woo-product-v5-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-v5-tab-menu-wrap .woo-product-v5-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: 0.3s;
}

.nav-item .woo-product-v5-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-v5-tab-menu-wrap .nav-item .woo-product-v5-menu-btn:hover,
.woo-product-v5-tab-menu-wrap .nav-item .woo-product-v5-menu-btn.active {
  background: transparent;
}

.woo-product-v5-box .woo-product-v5-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woo-product-v5-image {
  width: 210px;
  height: 210px;
  display: inline-block;
  border-radius: 150px;
  border: 7px solid var(--white-color);
  overflow: hidden;
  box-shadow: 0px 10px 19.7px 0px rgba(73, 73, 73, 0.38);
  margin-bottom: 18px;
}

.woo-product-v5-title {
  color: var(--white-color);
  font-family: Jost;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 6px;
}

.woo-product-v5-rating {
  margin-bottom: 4px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.woo-product-v5-pricing {
  color: var(--color-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.woo-product-v5-pricing span.price {
  color: var(--thm-color);
}

.woo-product-v5-box {
  margin-bottom: 30px;
  background: var(--white-color);
  text-align: center;
  padding: 30px 25px 23px;
  position: relative;
}

.woo-product-v5-big-sell {
  background: var(--thm-color);
  color: var(--white-color);
  font-family: Jost;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  padding: 2px 10px;
  display: inline-block;
  position: absolute;
  left: 25px;
  top: 25px;
}

.woo-product-v5-shop-item {
  position: absolute;
  right: 15px;
  top: 25px;
}

.woo-product-v5-shop-item a {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #f4efe3;
  font-size: 18px;
}

.woo-product-v5-shop-item .button.add_to_cart_button.ajax_add_to_cart:after {
  width: 40px;
  height: 40px;
  background: #f4efe3;
}

.woo-product-v2-cart .added_to_cart::after {
  width: 40px;
  height: 40px;
}

.woo-product-v5-shop-item .button.product_type_simple.add_to_cart_button.ajax_add_to_cart.added {
  display: none;
}

.woo-product-v5-box .star-rating {
  display: inline-block;
}

/* ------- Merida Gallery style --------- */

.merida-gallery-item a {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 12px;
}

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

.merida-gallery-item a:hover img {
  transform: scale(1.1);
}

.merida-gallery-content-area {
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: scale(0.4);
  visibility: hidden;
  transition: 0.4s;
  opacity: 0;
}

.merida-gallery-stitle {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.merida-gallery-title {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 150% */
  text-transform: uppercase;
}

.merida-gallery-item a:hover .merida-gallery-content-area {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

.merida-gallery-stitle span {
  position: relative;
}

.merida-gallery-stitle span:after {
  position: absolute;
  content: ",";
}

.merida-gallery-stitle span:last-child:after {
  content: unset;
}

/* ----------- WOO PRODUCT V6 STYLE ----------- */
/* menu */
.woo-product-v6-tab-menu-wrap .nav.woo-product-v6-tab-menu {
  gap: 25px;
  margin-bottom: 43px;
  position: relative;
  z-index: 1;
  width: max-content;
}

.woo-product-v6-tab-menu-wrap .nav.woo-product-v6-tab-menu:after {
  content: "";
  height: 1px;
  width: 100%;
  background: #d9d9d9;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.woo-product-v6-tab-menu-wrap ul.nav li {
  margin-bottom: 0;
}

.nav-item .woo-product-v6-menu-btn {
  color: var(--black-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  border-radius: 100px;
  border: 1px solid #e2e5e7;
  background: var(--white-color);
  padding: 7px 25px;
}

.nav-item .woo-product-v6-menu-btn.active {
  background: var(--thm-color);
  color: var(--white-color);
}

/*  */
.woo-product-v6-box {
  background: #fff;
  box-shadow: 0px 0px 5.3px 0px rgba(243, 243, 243, 0);
  padding: 20px 20px 16px;
  position: relative;
  margin-left: 25px;
  margin-top: 35px;
  margin-bottom: 20px;
}

.woo-product-v6-box .woo-product-v6-image img {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 100px;
  position: absolute;
  left: -25px;
  top: -35px;
}

.woo-product-v6-pricing {
  text-align: center;
  color: var(--thm-color);
  font-family: Jost;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 9px;
}

.woo-product-v6-title {
  color: var(--black-color);
  font-family: "Cormorant Garamond";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 187.5% */
  text-transform: uppercase;
  margin-bottom: 0;
}

.woo-product-v6-dec {
  color: var(--color-body);
  font-family: Jost;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 133.333% */
  margin-bottom: 7px;
}

.woo-product-v6-btn a {
  color: var(--thm-color);
  text-align: center;
  font-family: Jost;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.woo-product-v6-box .woo-product-v6-btn a i {
  margin-right: 5px;
}

.woo-product-v6-btn a:hover {
  color: var(--black-color);
}

.woo-product-v6-pagination {
  margin-top: 37px;
}

@media (max-width: 991px) {
  .woo-product-v6-tab-menu-wrap .nav.woo-product-v6-tab-menu:after {
    content: unset;
  }

  .woo-product-v6-tab-menu-wrap .nav.woo-product-v6-tab-menu {
    width: auto;
    flex-wrap: wrap;
  }
}

/* -----------  TESTIMONIAL SIX STYLE -----------  */

.testi-v6-description {
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 53px;
  /* 165.625% */
  text-transform: uppercase;
  margin-bottom: 27px;
  padding: 0 100px;
}

.testi-v6-name {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 162.5% */
  text-transform: uppercase;
}

.testi-v6-box {
  text-align: center;
}

.testi-v6-icon {
  margin-bottom: 3px;
}

.testi-v6-swiper-pagination {
  margin-top: 40px;
}

.testi-v6-arrow .button {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-v6-prev.button {
  left: 0;
  right: auto;
}

@media (max-width: 991px) {
  .testi-v6-description {
    font-size: 28px;
    line-height: 40px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .testi-v6-description {
    font-size: 20px;
    line-height: 34px;
    padding: 0;
  }

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

/* --------- SLIDER TWO STYLE ---------  */
/* ======================================== */

.slider-v2-wrapper .col-xl-6 {
  padding: 0;
}

.slider-v2-left-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.slider-v2-right-bg {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* .slider-v2-right-bg {
  position: absolute;
  right: 0;
  bottom: 200px;
  height: 470px;
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
} */

.slider-v2-content-box {
  position: relative;
  padding: 200px 0;
}

.slider-v2-stitle {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.slider-v2-stitle span {
  height: 1px;
  width: 140px;
  background: #d9d9d9;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 7px;
  margin-left: 10px;
}

.slider-v2-title {
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 82px;
  /* 113.889% */
  text-transform: uppercase;
  margin-bottom: 36px;
}

.slider-v2-descrip {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  margin-bottom: 61px;
}

.slider-v2-wrapper ul.slick-dots {
  margin-top: -50px;
}

.slider-v2-arrow-wrapper button {
  font-family: "Font Awesome 6 Pro";
  font-size: 24px;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  position: relative;
  transition: 0.4s;
  align-items: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  color: var(--thm-color);
  border: none;
}

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

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

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

.slider-v2-arrow-wrapper {
  display: flex;
  gap: 0px;
  align-items: center;
  position: absolute;
  bottom: 0px;
}

.slider-v2-horizontal-text {
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translate(0px, -50%);
  rotate: 90deg;
  background: linear-gradient(90deg,
      var(--white-color),
      var(--white-color),
      var(--thm-color));
  background-repeat: no-repeat;
  background-size: 80%;
  animation: horizontalAnimation 6s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  font-family: Jost;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

@keyframes horizontalAnimation {
  0% {
    background-position: -500%;
  }

  100% {
    background-position: 500%;
  }
}

.slider-v2-social-icon {
  position: absolute;
  right: 0;
  bottom: 120px;
  right: 80px;
  display: flex;
  gap: 20px;
  justify-content: center;
  z-index: 11;
}

@media screen and (max-width: 1550px) {
  .slider-v2-horizontal-text {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .slider-v2-left-bg {
    width: 100%;
  }

  .slider-v2-right-bg {
    display: none;
  }

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

  .slider-v2-stitle {
    font-size: 16px;
  }

  .slider-v2-descrip {
    font-size: 18px;
  }

  .slider-v2-wrapper .col-xl-6 {
    padding: 0 10px;
  }

  .slider-v2-arrow-wrapper {
    display: none;
  }

  .slider-v2-social-icon {
    right: 50px;
  }
}

@media screen and (max-width: 400px) {
  .slider-v2-social-icon {
    display: none;
  }

  .slider-v3-arrow-wrapper {
    display: none;
  }
}

/* dote style two  */
.dote-two ul.slick-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  flex-wrap: wrap;
  width: max-content;
  margin: auto;
}

.dote-two .slick-dots li {
  margin: unset;
  border: unset;
  padding: unset;
  height: unset;
  width: unset;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.dote-two .slick-dots li.slick-active {
  border: unset;
}

.dote-two .slick-dots li button {
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 20px;
  background: transparent;
  visibility: visible;
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

.dote-two .slick-dots li.slick-active button {
  background: var(--thm-color);
  border-color: transparent;
}

@media screen and (max-width: 1499px) {
  .dote-two ul.slick-dots {
    right: 80px;
    left: auto;
  }
}

/* ------------ HERO V1 STYLE ------- */
.hero-v1-wrapper {
  position: relative;
}

.hero-v1-box {
  padding: 210px 0 170px;
  position: relative;
  z-index: 111;
}

.hero-v1-title {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
  /* 100% */
  text-decoration-line: underline;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-v1-des {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.hero-v1-small-plates {
  display: flex;
  gap: 20px;
  margin-bottom: 65px;
  flex-wrap: wrap;
}

.hero-v1-plate {
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  width: 148px;
  height: 148px;
  background: #28282b;
  border: 12px solid #1a1a1a;
  transition: 0.4s;
}

.hero-v1-plate.active {
  border-color: var(--thm-color);
}

.hero-v1-small-plates .hero-v1-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s;
}

.hero-v1-plate.active img {
  transform: scale(1.2);
}

.hero-v1-large-plate {
  position: relative;
}

.hero-v1-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero-v1-large-plate img {
  object-fit: cover;
}

.hero-v1-wrapper #hero-v1-large-plate-img {
  position: absolute;
  z-index: 11;
  bottom: 139px;
  right: 210px;
  width: 519px;
  height: 520px;
}

@media screen and (max-width: 1599px) {
  .hero-v1-bg-img {
    width: 600px;
  }

  .hero-v1-wrapper #hero-v1-large-plate-img {
    bottom: 97px;
    right: 150px;
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 1199px) {
  .hero-v1-bg-img {
    width: 400px;
  }

  .hero-v1-wrapper #hero-v1-large-plate-img {
    bottom: 58px;
    right: 92px;
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .hero-v1-title {
    font-size: 60px;
    line-height: 70px;
  }

  .hero-v1-des {
    font-size: 30px;
  }

  .hero-v1-plate {
    border-radius: 1000px;
    width: 100px;
    height: 100px;
    border: 2px solid #1a1a1a;
  }
}

@media screen and (max-width: 500px) {
  .hero-v1-title {
    font-size: 50px;
    line-height: 60px;
  }

  .hero-v1-des {
    font-size: 24px;
  }

  .hero-v1-bg-img {
    width: 350px;
  }

  .hero-v1-wrapper #hero-v1-large-plate-img {
    bottom: 58px;
    right: 90px;
    width: 200px;
    height: 200px;
  }
}

/* ------ ---- SLIDER V3 STYLE ----- --------- */

.slider-v3-title {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
  text-decoration-line: underline;
  text-transform: uppercase;
  margin-bottom: 31px;
}

.slider-v3-stitle {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.slider-v3-descrip {
  color: var(--color-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 49px;
}

.slider-v3-theme-btns {
  color: var(--thm-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.76px;
  text-transform: uppercase;
}

.slider-v3-theme-btns:hover{
	color: var(--black-color);
}
.slider-v3-content-area {
  background: rgba(244, 239, 227, 0.44);
  padding: 41px 50px;
}

.slider-v3-right-content {
  position: relative;
  z-index: 111;
}

.slider-v3-content-box {
  padding: 120px 0;
}

.slider-v3-right-image {
  position: relative;
  right: -130px;
  flex-shrink: 0;
}

.slider-v3-right-bg {
  position: absolute;
  right: 0;
  bottom: 200px;
  height: 470px;
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 10;
}

.slider-v3-right-bg:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--thm-color);
}

.slider-v3-right-icon {
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 25px;
}

.slider-v3-arrow-wrapper {
  display: flex;
  gap: 0px;
  align-items: center;
  position: absolute;
  bottom: 24px;
  z-index: 1111;
}

.slider-v3-arrow-wrapper button {
  font-family: "Font Awesome 6 Pro";
  font-size: 24px;
  background: #363636;
  display: flex;
  justify-content: center;
  position: relative;
  transition: 0.4s;
  align-items: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  color: var(--white-color);
  border: none;
}

.slider-v3-arrow-wrapper button.slider-v3-prev {
  background: #1A1A1A;
  color: var(--white-color);
}

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

@media screen and (max-width: 1499px) {
  .slider-v3-right-content {
    height: 100%;
  }

  .slider-v3-arrow-wrapper {
    bottom: 120px;
  }

  .slider-v3-right-image {
    max-width: 600px;
  }
}

@media screen and (max-width: 1399px) {
  .slider-v3-right-image {
    margin-top: 100px;
  }

  .slider-v3-arrow-wrapper {
    bottom: 220px;
  }
}

@media screen and (max-width: 1199px) {
  .slider-v3-right-image {
    margin-top: 0px;
  }

  .slider-v3-content-box {
    padding: 120px 0 50px;
  }

  .slider-v3-right-content {
    padding-bottom: 110px;
  }

  .slider-v3-right-bg {
    bottom: 100px;
    height: 500px;
    width: 77%;
  }

  .slider-v3-arrow-wrapper {
    bottom: 100px;
  }
}

@media screen and (max-width: 991px) {
  .slider-v3-right-image {
    right: -0px;
  }
}

@media screen and (max-width: 767px) {
  .slider-v3-right-icon {
    display: none;
  }

  .slider-v3-content-box {
    padding: 120px 0 50px;
  }

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

  .slider-v3-stitle {
    font-size: 30px;
  }

  .slider-v3-content-area {
    padding: 41px 30px;
  }
}

@media screen and (max-width: 500px) {
  .slider-v3-title {
    font-size: 50px;
    line-height: 60px;
  }

  .slider-v3-right-bg {
    display: none;
  }

  .slider-v3-stitle {
    font-size: 24px;
  }
}

/* ---- ---------- MERIDA IMAGE STYLE -----------  */
.style-v1-main-image {
  position: relative;
  display: inline-block;
}

.style-v1-small-image {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: shapeanimation 2s linear 1s infinite alternate;
}

@media screen and (max-width: 767px) {
  .style-v1-small-image {
    transform: translate(0%, -50%);
  }
}

@keyframes shapeanimation {
  0% {
    bottom: 60px;
  }

  100% {
    bottom: -60px;
  }
}
/* ------------ Contact Form Three ---------  */
.merida-input-area{
	position:relative;
}
.merida-input-area.fullName::before,
.merida-input-area.emailAddress::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    color: #74787C;
	 display: block;
	    z-index: 1;
}
.merida-input-area.fullName .form-control,
.merida-input-area.emailAddress .form-control{
	background-color: unset
}
.merida-input-area.fullName::before {
    content: "\f007"; /* User icon */
}

.merida-input-area.emailAddress::before {
    content: "\f0e0"; /* Email icon */
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset; /* Make background transparent */
    -webkit-text-fill-color: #333; /* Set text color */
    transition: background-color 5000s ease-in-out 0s;
}
