:root {
  --thm-color: #093D31;
  --color-secondary: #FED65C;
  --color-black: #1C1C25;
  --color-body: #7B7E86;
  --color-content: #74787C;
  --color-white: #ffffff;
  --body-font: "Hanken Grotesk", sans-serif;
  --heading-font: "Outfit", serif;
}

.container,
.container-fluid {
  width: 100%;
  padding: 0 10px;
}

.container .container {
  padding: 0;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1220px !important;
  }
}

/* For Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.global-blog-style .post-thumbnail-wrapper img {
  transform: scale(1);
  transition: 0.4s;
}

.global-blog-style:hover .post-thumbnail-wrapper img {
  transform: scale(1.1);
  transition: 0.4s;
}

.post-thumbnail-wrapper {
  overflow: hidden;
}

/* 
/* button under line style  */
.button-underline span {
  display: inline-block;
  position: relative;
  padding: 0;
  border: none;
  overflow: hidden;
  color: currentColor;
}

.button-underline span:after {
  content: '';
  display: block;
  width: 300%;
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, currentColor 0 33%, transparent 33% 66%, currentColor 66% 100%);
  transform: translateX(-66%);
  transition: transform 1.2s cubic-bezier(.53, .95, .28, 1.03);
}

.theme-button i {
  transition: .4s;
}

/* .button-underline span:hover:after {
  transform: translateX(0);
} */
/*------ TITLE UNDER LINE---- */
.title_underline {
  position: relative;
}

.title_underline::after {
  width: 0;
  height: 2px;
  position: absolute;
  content: "";
  background: var(--color-black);
  bottom: 2px;
  transition: 0.4s ease-in-out;
  left: 0;
}

/* -------- swiper pagination bullets ----- */
.swiper-pagination-bullets {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.swiper-pagination-bullets span.swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  background: var(--thm-color);
  margin: 0 !important;
  padding: 0;
}

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

.button.offCanvas-open {
  transition: 0.4s;
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgb(255 255 255 / 10%);

}

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

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

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

.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(--color-white);
  border-left: 2px solid var(--thm-color);
}

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

.offCanvas-logo {
  font-size: 36px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 260px;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

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

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

.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(--heading-font);
  font-size: 24px;
  color: var(--color-black);
}

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

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

.offCanvas-contact-info ul li a:hover {
  color: var(--color-secondary);
}

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

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

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

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

}

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

/* line-style  */
span.canva-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out;
}

.canva-line.canva-line-2,
.canva-line.canva-line-4 {
  top: 30px;
  transition-delay: 0.1s;
}

.canva-line.canva-line-3,
.canva-line.canva-line-4 {
  left: 160%
}

.offCanvas-open:hover .canva-line.canva-line-1,
.offCanvas-open:hover .canva-line.canva-line-2 {
  left: -30%
}

.offCanvas-open:hover .canva-line.canva-line-3,
.offCanvas-open:hover .canva-line.canva-line-4 {
  left: 50%
}

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

/* ------ LOGO STYLE STYLE --------- */
.header-template-v1 .theme-button {
  background: var(--thm-color);
  color: var(--color-white);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.header-template-v1 .theme-button:before {
  background: var(--color-black);
}

.nobility-header-title {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-area .navbar {
  flex-wrap: nowrap;
  padding: 0;
}

.navbar-collapse.nav-menu {
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .navbar-collapse.nav-menu {
    text-align: right;
  }
}

.header-template-v1.Absolute {
  width: 100%;
  position: absolute;
}

.header-one-content-area {
  display: flex;
  gap: 20px;
}

.header-one-button {
  line-height: 0;
}

/* ------------ NOBILITY ICON LIST STYLE ------- */


.nobility-icon-list-wrp ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.nobility-icon-list-wrp li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.nobility-icon-list-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transition: .4s;
  display: flex;
  align-items: center;
  ;
}

.nobility-icon-list-title a {
  color: var(--color-white);
  display: inline-flex;
}

.nobility-icon-list-title a:hover {
  color: var(--color-secondary);
}

.nobility-icon-list-title>span {
  margin-right: 5px;
  transition: .4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nobility-icon-list-title .button-underline span:hover:after {
  transform: translateX(0);
}

.nobility-icon-list-wrp.after-border li .nobility-icon-list-title {
  padding-left: 25px;
}

.nobility-icon-list-wrp.after-border li:first-child .nobility-icon-list-title {
  padding-left: 0;
}

.nobility-icon-list-wrp.after-border li:after {
  content: '';
  position: absolute;
  background: #D4D4D4;
  height: 14px;
  width: 1px;
  left: 0;
}

.nobility-icon-list-wrp.after-border li:first-child::after {
  content: unset;
}

/* --------- SOCIAL ICON STYLE ----- */
.nobility-social-icon span {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.nobility-social-icon a {
  color: var(--color-white);
  font-family: "Font Awesome 6 Brands";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nobility-social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* --------- SOCIAL ICON STYLE ----- */

.nobility-social-icon span {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.nobility-social-icon a {
  color: var(--color-white);
  font-family: "Font Awesome 6 Brands";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nobility-social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ------- social icon style two ------- */
.nobility-social-icon-label-v2 {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}

.nobility-social-icon-v2 a {
  background: #E8EDEC;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: var(--thm-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nobility-social-icon-v2 a:hover {
  background: var(--thm-color);
  color: var(--color-white);

}

.nobility-social-icon-v2 {
  display: inline-flex;
  gap: 5px;
}

.nobility-social-icon-map-v2 {
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  margin-top: 14px;
}

.nobility-social-icon-map-v2 a {
  color: var(--color-body);
}

.nobility-social-icon-map-v2 a:hover {
  color: var(--color-secondary);
}

.nobility-social-icon-box {
  border-radius: 20px;
  border: 1px solid #DEDEDE;
  padding: 24px 30px 23px;
}

.nobility-social-icon-map-v2 .button-underline:hover span:after {
  transform: translateX(0);
}

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

.play-icon {
  display: inline-flex;
  position: relative;
  z-index: 1;
  align-items: center;

}

.play-icon>i {
  text-align: center;
  color: var(--color-white);
  z-index: 1;
  transition: all ease 0.4s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-size: 27px;
  font-style: normal;
  font-weight: 900;
  border-radius: 82px;
  background: rgba(24, 51, 37, 0.45);
  width: 82px;
  height: 82px;
  flex-shrink: 0;
}

.play-icon:after,
.play-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  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;
  border-radius: 100px;
  border: 1px solid #BACFC2;
}

.play-icon span {
  position: absolute;
  width: max-content;
  display: flex;
  align-items: center;
  left: 100%;
  margin-left: 25px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  transition: all ease 0.4s;
}

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

  30% {
    opacity: 0.8;
  }

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

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: .4;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.mfp-fade.mfp-wrap.mfp-ready {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing {
  opacity: 0;
}

/* --------------- BUTTON ONE STYLE --------- */

a.nobility-button-one {
  display: inline-flex;
  width: 179px;
  height: 52px;
  padding: 24px 32px 24px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 44px;
  background: var(--color-secondary);
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  position: relative;
}

a.nobility-button-one:hover {
  background: var(--color-black);
  color: var(--color-white);
}


.nobility-button-one-icon-wrp {
  border-radius: 100px;
  font-size: 22px;
  overflow: hidden;
  position: absolute;
  right: -30px;
  border-radius: 200px;
  background: #FBFBFB;
  color: var(--color-black);
  display: flex;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  transform: rotate(320deg);
  transition: .4s;
  margin-left: 2px;
}

.nobility-button-one:hover .nobility-button-one-icon-wrp {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: rotate(0deg);
  transition: .4s;
}

/* ------------ BOBILITY REVIEW STYLE ------- */
.nobility-review-item {
  text-align: center;
}

.no-swiper .nobility-review-item {
  margin-bottom: 40px;
}

.nobility-review-des {
  margin-bottom: 8px;
}

.nobility-review-rating {
  color: var(--color-secondary);
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  display: inline-flex;
  gap: 5px;
}

.nobility-review-logo img {
  margin-bottom: 15px;
}

.review-v1-arrow .button {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: var(--color-black);
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 11;
  transition: .4s;
  box-shadow: 0px 10px 20px #E8E8E8;
}

.review-v1-arrow .button:hover {
  box-shadow: 0px 0px 20px #E8E8E8;
}

.review-v1-next.button {
  right: -100px;
}

.review-v1-prev.button {
  left: -100px;
}

.nobility-review-wrapper .container {
  position: relative;
}

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

  .review-v1-prev.button {
    left: -50px;
  }
}

@media (max-width: 767px) {
  .review-v1-arrow {
    display: none;
  }
}

/* ---------- SERVICE ONE STYLE --------- */
.service-v1-box {
  padding: 37px 45px 45px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid #EDF1EF;
  background: var(--color-white);
  transition: .4s;
  margin-bottom: 20px;
}

.service-v1-box:hover {
  box-shadow: 0px 29px 52px 0px rgba(94, 94, 94, 0.14);
}

.service-v1-stitle {
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.service-v1-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 19px;
}

.service-v1-des {
  margin-bottom: 10px;
}

.service-v1-content .service-v1-btn {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 43px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-v1-box::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -80px;
  background-image: url(../image/server-v1-shape.svg);
  height: 100%;
  width: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  transition: 0.4s;
  background-position: top right;
  z-index: -1;
  opacity: 0;
}

.service-v1-box:hover:after {
  top: 0px;
  right: 0px;
  opacity: 1;
}

.service-v1-box .button-underline span:after {
  bottom: 5px;
}

.service-v1-box:hover .button-underline span:after {
  transform: translateX(0);
}

/* ---------- COUNTER ONE STYLE ---------- */

.counter-one-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 25px;
}

.counter-one-icon {
  font-size: 45px;
  height: 90px;
  width: 90px;
  min-width: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-color);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  border-radius: 100px;
  background: var(--color-secondary);
  position: relative;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}


.counter-one-item:hover .counter-one-icon {
  transform: rotateY(180deg)
}

.counter-one-number span {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: inline-block;
}

.counter-one-counter-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.counter-one-wrapper [class*=col-]:last-child .counter-one-item {
  justify-content: flex-end
}

.counter-one-wrapper [class*=col-]:first-child .counter-one-item {
  justify-content: flex-start
}

@media screen and (max-width: 1199px) {

  .counter-one-item,
  .counter-one-wrapper [class*=col-]:first-child .counter-one-item,
  .counter-one-wrapper [class*=col-]:last-child .counter-one-item {
    justify-content: flex-start
  }
}

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

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

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

.nobility-skills-wrapper .skillbar-item .skillbar {
  height: 12px;
  position: relative;
  text-align: right;
  border-radius: 100px;
  border: 1px solid rgba(210, 233, 220, 0.62);
  background: var(--color-white);
  box-shadow: 0px 10px 31px 0px rgba(169, 193, 186, 0.17);
  padding: 2px;
}

.nobility-skills-wrapper .skillbar-item .skillbar .skill-percent-count-wrap {
  position: absolute;
  right: 0;
  top: -26px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.nobility-skills-wrapper .skillbar-item .skillbar .count-bar {
  height: 100%;
  position: relative;
  text-align: right;
  padding-right: 0;
  border-radius: 10px;
  overflow: visible !important;
  background: var(--thm-color);
  box-shadow: 0px 10px 31px 0px rgba(169, 177, 193, 0.17);
}

/*************************************
    ******** TESTIMONIAL V1 CSS  **********
    *************************************/

.testi-v1-item-box {
  margin-bottom: 25px;
  padding: 40px 40px 45px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: var(--color-white);
}

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

.testi-v1-quit {
  color: var(--thm-color);
  font-size: 45px;
}

.testi-v1-description {
  margin-top: 17px;
  margin-bottom: 26px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
}

.testi-v1-author-info {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  z-index: 11;
  position: relative;
}

.testi-v1-name {
  margin-bottom: 2px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.testi-v1-designation {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  display: inline-block;
}

.testi-v1-information .testi-v1-rating-text {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.testi-v1-information i {
  color: var(--color-secondary);
}

.testi-v1-item-box .testi-v1-img img {
  width: 70px;
  height: 70.036px;
  border-radius: 100px;
  object-fit: cover;
}

.testi-v1-arrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 80px;
  justify-content: flex-end;
}

.testi-v1-arrow .button {
  border-radius: 5px;
  background: var(--color-black);
  padding: 18px 25px;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.testi-v1-arrow .testi-v1-next.button {
  background: var(--color-secondary);
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .testi-v1-arrow {
    display: none;
  }
}

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

.faq-accordion .accordion-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #DEDEDE;
  background: var(--color-white);
}

.faq-accordion .accordion-item:last-of-type,
.faq-accordion .accordion-item:first-of-type {
  border-radius: 10px;
}

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

.faq-accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid #DEDEDE;
}

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

.accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  border-bottom: 1px solid #DEDEDE;
}

.accordion-header .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f063";
  font-family: "Font Awesome 5 Free";
}


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

.faq-accordion .accordion-button {
  border: none;
  display: inline-block;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 18px 35px;
  background: var(--color-white);
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--thm-color);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  position: absolute;
  right: 30px;
  background-image: none !important;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  color: var(--thm-color);
  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: 21px 35px 22px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

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

}

/* --------- BLOG STYLE ONE ------ */

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

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

.blog-v1-style:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .6s linear;
}

.blog-v1-style .blog-v1-img {
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 26px;
}

.blog-v1-style {
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: 0px 9px 60px 0px rgba(8, 20, 44, 0.07);
  overflow: hidden;
  padding: 30px 30px 25px;
  margin-bottom: 20PX;
}

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

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

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

.blog-v1-style .blog-v1-btn {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

a.blog-v1-btn:hover {
  color: var(--color-secondary);
}

.blog-v1-style .button-underline span:after {
  bottom: 5px;
}

.blog-v1-style .button-underline:hover span:after {
  transform: translateX(0);
}

.blog-v1-meta-item {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 15px;
}

.blog-v1-meta-item a {
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-v1-meta-item a i {
  margin-right: 5px;
  color: var(--thm-color);
}

.blog-v1-meta-item a:hover {
  color: var(--color-secondary);
}

.blog-v1-des {
  font-family: var(--body-font);
  margin-bottom: 19px;
}

.blog-v1-content a.theme-button {
  border: 0;
  border-radius: 100px;
  background: rgba(9, 61, 49, 0.13);
  text-transform: capitalize;
}

/* --------------------------------------- */
/* --------- nobility TAB V1 STYLE ---------- */

.tab-v1-tabs-wrapper .tab-v1-tab {
  display: flex;
  flex-wrap: nowrap;
  border: none;
  margin-bottom: 33px;
  background: #18493D;
  align-items: center;
}

.tab-v1-tabs-wrapper.style-two .tab-v1-tab {
  gap: 50px;
  padding: 20px;
}

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

.tab-v1-tab.nav-tabs .nav-item {
  position: relative;
}

.tab-v1-tab.nav-tabs .nav-link {
  text-align: center;
  text-transform: uppercase;
  padding: 18px;
  width: 100%;
  border-radius: 0;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 0;
  transition: .4s;
  position: relative;
}

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

.tab-v1-tabs-wrapper .nav-tabs .shape .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -15px;
  border-width: 15px;
  border-style: solid;
  border-color: var(--color-white) transparent transparent transparent;
}

.tab-body-content {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.style-two .tab-v1-tab.nav-tabs .nav-link {
  background: var(--color-white);
  color: var(--thm-color);
}

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

.style-two .tab-v1-tab.nav-tabs .nav-item:after {
  content: '';
  height: 97px;
  width: 1px;
  background: rgba(255, 255, 255, 0.23);
  position: absolute;
  top: 0;
  left: -24px;
  bottom: 0;
  margin: auto;
}

.style-two .tab-v1-tab.nav-tabs .nav-item:before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  z-index: 1;
  left: -30px;
  bottom: 0;
  margin: auto;
  border-radius: 100px;
}

.style-two .tab-v1-tab.nav-tabs .nav-item:first-child::before,
.style-two .tab-v1-tab.nav-tabs .nav-item:first-child::after {
  content: unset;
}

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

  .style-two .tab-v1-tab.nav-tabs .nav-item:before,
  .style-two .tab-v1-tab.nav-tabs .nav-item:after {
    content: unset;
  }
}

/* TAB STYLE THREE  */

.tab-v1-top-area .tab-v1-tab {
  position: relative;
}

.style-three .nav-item .nav-link {
  border-radius: 100px;
  background: var(--color-white);
  padding: 15px 25px;
  transition: 0.4s;
  position: relative;
  z-index: 11;
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.style-three .nav-tabs .nav-item.show .nav-link,
.style-three .nav-tabs .nav-link.active {
  background: var(--thm-color);
  color: var(--color-white);
}

.style-three .tab-v1-top-area ul:after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(244, 244, 244, 0.30);
  position: absolute;
  top: auto;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 2;
}

/* ------- tba v4 style --------- */

.tab-v1-tabs-wrapper.style-four {
  display: flex;
  gap: 24px;
}

.tab-v1-tabs-wrapper.style-four .tab-v1-tab {
  border: none;
  margin-bottom: 0;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
  background: #EBF1F3;
  padding: 30px;
}

.style-four .tab-v1-tab.nav-tabs .nav-link {
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0px 11px 23px 0px rgba(21, 75, 185, 0.03);
  color: var(--color-black);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  padding: 10px 20px;
  min-width: 230px;
}

.style-four .nav-tabs .nav-item.show .nav-link,
.style-four .nav-tabs .nav-link.active {
  background: var(--thm-color);
  color: var(--color-white);
}

.style-four .nav-tabs .nav-link:after {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  background: rgb(0 78 102 / 10%);
  right: 20px;
  top: 43%;
  border-radius: 100%;
}

.style-four .nav-tabs .nav-link.active:after {
  background: var(--color-white);
}

@media screen and (max-width: 991px) {
  .tab-v1-tabs-wrapper.style-four {
    flex-direction: column;
  }
}

/*------- tab v5 style ------- */
.tab-v1-tabs-wrapper.style-five {
  display: flex;
  /* gap: 100px; */
}

.tab-v1-tabs-wrapper.style-five .tab-v1-tab {
  margin-bottom: 0px;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  border-right: 1px solid rgba(152, 152, 152, 0.13);
  margin-right: 50px;
  padding-right: 50px;
  position: relative;
}



.style-five .tab-v1-tab.nav-tabs .nav-link {
  background: rgba(239, 239, 239, 0.63);
  color: var(--thm-color);
  font-size: 20px;
  text-transform: capitalize;
  min-width: 225px;
  position: relative;
}

.style-five .tab-v1-tab.nav-tabs .nav-link span {
  margin-left: 8px;
}

.style-five .tab-v1-tab.nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  height: 60px;
  width: 3px;
  background: var(--thm-color);
  right: -52px;
  bottom: 0;

}

.style-five .nav-tabs .nav-item.show .nav-link,
.style-five .nav-tabs .nav-link.active {
  background: var(--thm-color);
  color: var(--color-white);
}

.style-five .nav-tabs .nav-link.active svg path {
  fill: var(--color-white);

}

@media screen and (max-width: 991px) {
  .tab-v1-tabs-wrapper.style-five {
    flex-direction: column;
  }

  .tab-v1-tabs-wrapper.style-five .tab-v1-tab {
    margin-bottom: 30px;
    border-right: none;
    margin-right: 0px;
    padding-right: 0px;
  }

  .style-five .tab-v1-tab.nav-tabs .nav-link.active::after {
    content: unset;
  }
}

/* --------------------------------------- */
/* ----------- SLIDER V1 STYLE ----------- */

.nobility-table {
  display: table;
  height: 100%;
  width: 100%;
}

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

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

.slider-v1-wrapper {
  position: relative;
}

.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;
  background-position: center;
}

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

.slider-v1-item-bg:before {
  content: '';
  background-color: rgba(22, 20, 20, 0.29);
  backdrop-filter: blur(17.25px);
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
}

.animeslide-slide.swiper-slide-active .slider-v1-stitle {
  transition-delay: 0.4s;
}

.slider-v1-stitle {
  margin-bottom: 15px;
  color: var(--color-secondary);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  position: relative;
  padding-left: 23px;
  display: inline-block;
}

.slider-v1-stitle:before {
  content: "";
  height: 8px;
  width: 8px;
  background: var(--color-secondary);
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  left: 0;
  border-radius: 2px;
}

.slider-v1-stitle::after {
  content: "";
  height: 8px;
  width: 8px;
  background: var(--color-secondary);
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  right: -20px;
  border-radius: 2px;
}

.animeslide-slide.swiper-slide-active .slider-v1-title {
  transition-delay: 0.7s;
}

.slider-v1-title {
  color: var(--color-white);
  font-style: normal;
  font-weight: 500;
  margin-bottom: 28px;
  font-size: 60px;
  line-height: normal;
}

.slider-v1-title.button-underline span {
  display: inline-flex;
  font-weight: 200;
}

.slider-v1-title.button-underline span:after {
  bottom: 8px;
  height: 2px;
}

.slider-v1-title.button-underline span:hover::after {
  transform: translateX(0);
}

.animeslide-slide.swiper-slide-active .slider-v1-des {
  transition-delay: 1s;
}

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


.slider-v1-area {
  display: inline-flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.slider-v1-area .theme-button {
  border: none;
}

.slider-v1-button .theme-button i {
  margin-left: 5px;
}

.slider-v1-contact-icon {
  stroke-width: 1px;
  border: 1px solid var(--color-white);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: var(--color-white);
}

.slider-v1-contact-label {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
  text-align: left;
}

.slider-v1-contact-number {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.slider-v1-contact-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-v1-nav {
  font-family: var(--body-font);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px);
  color: var(--color-white);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  padding: 10px 25px;
  width: max-content;
  cursor: pointer;
}

.swiper-slide-thumb-active .slider-v1-nav {
  background: var(--color-white);
  color: var(--thm-color);
}

.swiper.slider-v1-nav-content {
  position: absolute;
  right: 120px;
  overflow: visible;
  top: 50%;
  transform: translatey(-50%);
}

.swiper.slider-v1-nav-content .swiper-wrapper {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.swiper.slider-v1-nav-content .swiper-slide {
  display: inline-flex;
  justify-content: flex-end;
  width: 100% ! IMPORTANT;
}

.slider-v1-arrow-button .swiper-button-next,
.slider-v1-arrow-button .swiper-button-prev {
  color: var(--color-white);
}

@media screen and (max-width: 1199px) {
  .swiper.slider-v1-nav-content {
    right: 0px;
  }
}

@media screen and (max-width: 991px) {
  .swiper.slider-v1-nav-content {
    display: none;
  }

  .slider-v1-arrow-button {
    display: none;
  }

  .slider-v1-title {
    font-size: 52px;
  }
}

@media screen and (max-width: 991px) {
  .slider-v1-title {
    font-size: 48px;
  }
}

/* ------ Brand Logo style ------ */
.brand-logo-wrapper .swiper-wrapper {
  align-items: center;
}

.brand-logo-item {
  display: flex;
  justify-content: center;
}

.brand-logo-item .brand-logo {
  border-radius: 15px;
  border: 1px solid #E2E5E7;
  background: var(--color-white);
  box-shadow: 0px 11px 30px 0px rgba(31, 63, 73, 0.09);
  margin: 30px 0;
  padding: 20px 40px;
  display: inline-block;
}

.no-swiper .brand-logo-item .brand-logo {
  margin-bottom: 30px;
}


/* ---------- SERVICE V2 STYLE START --------- */

.service-v2-box.shape:before {
  mask-image: url(../image/service-bg.png);
  -webkit-mask-image: url(../image/service-bg.png);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 28%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.service-v2-box.shape:hover:before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1199px) {

  .service-v2-box.shape:before {
    content: unset;
  }
}

.service-v2-icon {
  border-radius: 15px;
  border: 1px solid rgba(237, 237, 237, 0.89);
  background: var(--color-white);
  box-shadow: 0px 16px 51px 0px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  font-size: 50px;
  margin-bottom: 27px;
  transition: .4s;
  z-index: 1;
  position: relative;
  color: var(--thm-color);
}

.service-v2-box:hover .service-v2-icon {
  box-shadow: 0px 16px 51px 0px rgba(0, 0, 0, 0.13);
  color: var(--color-secondary);
  transform: rotateY(180deg);
}

.service-v2-icon svg path {
  transition: .4s;
}

.service-v2-box:hover .service-v2-icon svg path {
  fill: var(--color-secondary);
}

.service-v2-box {
  border-radius: 15px;
  background: var(--color-white);
  padding: 40px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #edf1ef69;
  transition: .4s;
}

.service-v2-box:hover {
  box-shadow: 0px 21px 22.9px -28px rgba(48, 48, 48, 0.36);
}

.service-v2-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

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

.service-v2-title a:hover {
  color: var(--color-secondary);
}

.service-v2-title.title-border a {
  --underline-position: bottom;
  --underline-size: 2px;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% var(--underline-size);
  display: inline;
  background-position: right 0 var(--underline-position);
  transition: .6s cubic-bezier(.25, .8, .25, 1), background-position 0s !important;
}

.service-v2-title.title-border a:hover {
  color: var(--color-secondary);
  background-size: 100% var(--underline-size);
  background-position: left 0 var(--underline-position);
}

.service-v2-des {
  margin-bottom: 22px;
}


/* button */

.button-v2-area {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  transition: .4s;
}

.button-v2-area {
  width: 180px;
  height: auto;
}

.button-v2-area .button-v2-circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  border-radius: 100px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(237, 237, 237, 0.89);
  filter: drop-shadow(0px 16px 51px rgba(0, 0, 0, 0.07));
  color: var(--color-black);
}

.button-v2-area .button-v2-circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--color-white);
}

.button-v2-area .button-v2-circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.button-v2-area .button-v2-circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--color-white);
  border-right: 0.125rem solid var(--color-white);
  transform: rotate(45deg);
  border-color: var(--thm-color);
  transition: .4s;
}


.button-v2-area .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0 10px;
  margin-left: 25px;
  font-weight: 700;
  text-align: center;
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.button-v2-area:hover .button-v2-circle {
  width: 100%;
}

.button-v2-area:hover .button-text {
  color: var(--color-white);
}

.service-v2-box:hover .button-v2-circle {
  background: var(--color-secondary);
}

.service-v2-box:hover .button-v2-circle .icon.arrow::before {
  border-color: var(--color-white);
}

.button-v2-area:hover .button-v2-circle .icon.arrow {
  background: var(--color-white);
  transform: translate(1rem, 0);
}


/* ----------   TESTIMONIAL V2 STYLE -------- */
.testi-v2-wrapper .container {
  position: relative;
}

.testi-v2-clint-img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  overflow: hidden;
}

.testi-v2-wrapper .testi-v2-clint-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testi-v2-description {
  color: #CFD2DB;
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 27px;
}

.testi-v2-clint-area {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 15px;
  padding: 30px;
  position: relative;
}

.swiper-slide-active .testi-v2-clint-area::after {
  content: '';
  border-radius: 15px;
  background: var(--thm-color);
  width: 5px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.swiper-slide-active .testi-v2-clint-area {
  background: var(--color-white);
}

.testi-v2-clint-name {
  color: #F9F9F9;
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 100% */
  margin-bottom: 10px;
}

.testi-v2-clint-designation {
  color: #92B8AF;
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 100% */
}

.swiper-slide-active .testi-v2-clint-name {
  color: var(--color-black);
}

.swiper-slide-active .testi-v2-clint-designation {
  color: var(--thm-color);
}


.testi-v2-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  flex-direction: column;
  z-index: 9999999999;
  top: -18px;
  right: -120px;
  margin: auto;
}

.testi-v2-arrow .button {
  color: var(--color-white);
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--color-secondary);
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
}

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


@media screen and (max-width: 1440px) {
  .testi-v2-arrow {
    right: -50px;
  }
}

@media screen and (max-width: 1299px) {
  .testi-v2-arrow {
    display: none;
  }
}


/* ---------- NOBILITY IMAGE STYLE ------ */


/* .tp-image:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .9s linear;
} */

.style-v1-main-image {
  position: relative;
  display: inline-block;
}

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

.style-v1-small-image-content {
  position: relative;
}

.style-v1-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
}

.style-v1-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.style-v1-stitle {
  color: var(--color-white);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.style-v1-image-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -41px;
}

.style-v1-image-video .play-icon>i {
  background: var(--color-secondary);
}

/*  --------- IMAGE STYLE TWO -------- */

.style-v2-main-img {
  position: relative;
  display: inline-block;
}

.style-v2-small-image {
  position: absolute;
  right: -70px;
  bottom: -100px;
  z-index: 1;
  border-radius: 10px;
  animation: shapeanimation2 3s linear 2s infinite alternate;
}

.style-v2-small-image:after {
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--thm-color);
  z-index: -1;
  top: -15px;
  left: -15px;
  border-radius: 10px;
}

/* --style three */

.style-v3-image-box {
  display: flex;
  gap: 20px;
}

.style-v3-left-img {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ------- style five */

.style-v4-main-image {
  display: inline-block;
  text-align: center;
  position: relative;
}

.nobility-image-wrp .style-v4-main-image>img {
  width: 380px;
  height: 300px;
  min-width: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.style-v4-small-image {
  display: flex;
  position: relative;
}

.nobility-image-wrp .style-v4-small-image-left img {
  width: 265px;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  margin-top: -50px;
  border: 10px solid var(--color-white);
}

.nobility-image-wrp .style-v4-small-image-right img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.style-v4-small-image-right {
  margin-left: 20px;
  margin-top: 20px;
}

.image-bg-shape1 {
  height: 150px;
  width: 150px;
  background: var(--thm-color);
  opacity: 0.1;
  border-radius: 100%;
  position: absolute;
  top: 26%;
  left: -30px;
  z-index: -1;
  animation: circle2 3s linear 2s infinite alternate;
}

@keyframes circle2 {
  0% {
    top: 30%;
  }

  100% {
    top: 20%;
  }
}

.image-bg-shape2 {
  height: 100px;
  width: 100px;
  background: var(--thm-color);
  border-radius: 100%;
  position: absolute;
  left: 46%;
  bottom: 7%;
  z-index: -1;
  animation: circle1 3s linear 2s infinite alternate;
}

@keyframes circle1 {
  0% {
    bottom: 50px;
  }

  100% {
    bottom: 0px;
  }
}

/* ----- style image five ------ */

.style-v5-small-img {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

@media screen and (max-width: 1200px) {
  .style-v2-small-image {
    right: 0;
    max-width: 280px;
  }
}

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

  .style-v1-image-video {
    transform: translate(-50%, -50%);
    right: unset;
    left: 50%;
  }

  .style-v2-small-image {
    max-width: 200px;
  }
}

@media screen and (max-width: 425px) {
  .style-v1-small-image-content {
    max-width: 200px;
  }

  .nobility-image-wrp .style-v4-small-image-left img,
  .nobility-image-wrp .style-v4-small-image-right img {
    height: 180px;
    width: 180px;
  }

}

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

  100% {
    bottom: -60px;
  }
}

@keyframes shapeanimation2 {
  0% {
    bottom: 40px;
  }

  100% {
    bottom: -100px;
  }
}

/* ------------- STYLE SIX IMAGE STYLE  */
.style-v6-counter-box {
  border-radius: 25px 0 30px 0;
  background: var(--color-white);
  border-right: 15px solid var(--thm-color);
  border-bottom: 15px solid var(--thm-color);
  padding: 23px 35px 35px;
  position: absolute;
  left: 0;
  top: 0;
  width: 270px;
}

.style-v6-counter-box span {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  margin-bottom: 6px;
}

.style-v6-counter-title {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.style-v6-main-image {
  position: relative;
  display: inline-block;
}

span.style-v6-rating-text {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

span.style-v6-rating-text i {
  color: #FFB422;
}

/* ----------- ICON BOX STYLE --------- */

.icon-box-v1-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 7px;
  transition: .4s;
}


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

.icon-box-v1-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--thm-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--color-white);
  transition: .4s;
}

.icon-box-v1-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  transition: .4s;
}

/* ----------- COUNTER V2 STYLE ------- */
.counter-v2-item {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 30px 0 50px;
}

.counter-v2-number {
  margin-bottom: -85px;
}

.counter-v2-title {
  letter-spacing: 2px;
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.counter-v2-number span {
  color: #F5F5F5;
  font-family: var(--heading-font);
  font-size: 180px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
}

.counter-v2-wrapper .count-process {
  text-align: center;
  width: max-content;
}

/* --------- TESTIMONIAL V3 STYLE ---------- */
.testi-v3-wrapper .container {
  position: relative;
}

.testi-v3-item-box {
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0px 10px 21px 0px rgb(2 2 2 / 5%);
  margin-bottom: 30px;
  padding: 33px 30px 32px;
  transition: .4s;
  border: 1px solid transparent;
  margin-top: 5px;
  overflow: hidden;
}

.testi-v3-item-box:hover {
  border: 1px solid var(--thm-color);
}

.testi-v3-description {
  color: #535359;
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.testi-v3-name {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1px;
}

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

.testi-v3-rating-text {
  color: var(--color-secondary);
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  gap: 2px;
  display: inline-flex;
  margin-bottom: 26px;
}

.testi-v3-img {
  height: 60px;
  width: 60px;
  border-radius: 100px;
  overflow: hidden;
}

.testi-v3-author-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.testi-v3-arrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 80px;
  justify-content: flex-end;
}

.testi-v3-arrow .button {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 100px;
  background: #4aae471a;
  color: var(--color-white);
  transition: .4s;
}


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

.testi-v3-pagination span {
  height: 20px;
  width: 20px;
  background: transparent;
  border-radius: 20px;
  border: 2px solid rgba(0, 78, 102, 0.40);
  position: relative;
  margin: 0 !important;
}

.testi-v3-pagination span.swiper-pagination-bullet-active {
  border: 2px solid var(--thm-color);
}

.testi-v3-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--thm-color);
  width: 74%;
  height: 70%;
  transform: translate(-46%, -50%);
  border-radius: 100px;
  min-width: 70%;
  min-height: 70%;
}

.testi-v3-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}



@media screen and (max-width: 1024px) {
  .testi-v3-arrow {
    display: none;
  }
}


/* ---------- BLOG V2 STYLE ---------- */
.blog-v2-static-content {
  margin-bottom: 40px;
}

.position-relative {
  position: relative !important;
}

.blog-v2-sec-stitle {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  position: relative;
  padding: 0 23px;
  display: inline-block;
  margin-bottom: 17px;
}

.blog-v2-sec-stitle:after,
.blog-v2-sec-stitle:before {
  content: "";
  height: 8px;
  width: 8px;
  background: var(--thm-color);
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  left: 0;
  border-radius: 2px;
  box-shadow: 0px 3px 11px 0px rgba(0, 78, 102, 0.16);
}

.blog-v2-sec-stitle:after {
  left: unset;
  right: 0;
}

.blog-v2-sec-title {
  margin-bottom: 25px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 58px;
  margin-bottom: 22px;
}

.blog-v2-sec-des {
  margin-bottom: 42px;
  color: var(--color-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.blog-v2-sec-btn a {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 100px;
  background: var(--thm-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: .4s;
  text-transform: capitalize;
}

.blog-v2-sec-btn a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.blog-v2-item-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 20px;
  background: var(--color-white);
  transition: .4s;
}

.blog-v2-item-box:hover {
  box-shadow: 0px 9px 75px 0px rgba(2, 2, 2, 0.09);
}

.blog-v2-item-box:last-child {
  margin-bottom: 0 !important;
}

.blog-v2-item-box .blog-v2-img {
  overflow: hidden;
  border-radius: 20px;
  width: 280px;
  height: 228px;
  flex-shrink: 0;
}

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

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

.blog-v2-item-box:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .6s linear;
}

.blog-v2-title {
  margin-top: 22px;
  margin-bottom: 24px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 150% */
}

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

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

.blog-v2-meta ul {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.blog-v2-meta span.posted-on .updated {
  display: none;
}

.blog-v2-meta ul li {
  list-style: none;
}

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

.blog-v2-meta a {
  border-radius: 100px;
  border: 1px solid rgba(237, 237, 237, 0.89);
  background: var(--color-white);
  padding: 5px 20px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.blog-v2-meta a:hover {
  background: var(--thm-color);
  color: var(--color-white);
}

.blog-v2-meta>span i {
  display: none;
}

.blog-v2-btn {
  display: inline-block;
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.blog-v2-btn:hover {
  color: var(--color-black);
}

.blog-v2-content .button-underline span:hover:after {
  transform: translateX(0);
}

@media (max-width: 991px) {

  .blog-v2-sec-content-area {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .blog-v2-item-box {
    display: block;
  }

  .blog-v2-sec-title {
    font-size: 40px;
    line-height: normal;
  }

  .blog-v2-item-box .blog-v2-img {
    margin-bottom: 30px;
    width: 100%;
    height: 300px;
  }
}


/* --------   ICON BOX V2 STYLE --------- */


.icon-box-v2-item {
  text-align: center;
  padding: 0px 10px;
  margin-bottom: 40px;
}

.icon-box-v2-icon {
  background: var(--color-white);
  color: var(--thm-color);
  box-shadow: 0px 0px 77px rgba(170, 170, 170, 0.13);
  width: 130px;
  height: 130px;
  font-size: 55px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
  position: relative;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.icon-box-v2-item.active .icon-box-v2-icon,
.icon-box-v2-item:hover .icon-box-v2-icon {
  color: var(--color-white);
  background: var(--thm-color);
}

.icon-box-v2-item.active .icon-box-v2-icon svg path,
.icon-box-v2-item:hover .icon-box-v2-icon svg path {
  fill: var(--color-white);
}

.icon-box-v2-icon-attr {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-white);
  background: var(--thm-color);
  height: 45px;
  width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0px;
  border: 5px solid var(--color-white);
  font-family: var(--heading-font);
}

.icon-box-v2-title {
  margin-bottom: 13px;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

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

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

.icon-box-v2-des {
  font-family: var(--body-font);
}

.icon-box-v2-item .icon-box-v2-icon::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-position: center right;
  left: 155px;
  top: 0;
  mask-image: url(../image/1.png);
  -webkit-mask-image: url(../image/1.png);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: var(--thm-color);
  opacity: 0.1;
}

.icon-box-v2-item .icon-box-v2-icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-position: center right;
  left: 155px;
  mask-image: url(../image/2.png);
  -webkit-mask-image: url(../image/2.png);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: var(--thm-color);
  opacity: 0.1;
}

.icon-box-v2-wrapper [class*="col-"]:last-child .icon-box-v2-item .icon-box-v2-icon::after,
.icon-box-v2-wrapper [class*="col-"]:last-child .icon-box-v2-item .icon-box-v2-icon::before,
.icon-box-v2-wrapper [class*="col-"]:nth-child(even) .icon-box-v2-item .icon-box-v2-icon::after,
.icon-box-v2-wrapper [class*="col-"]:nth-child(odd) .icon-box-v2-item .icon-box-v2-icon::before {
  display: none;
}

.icon-box-v2-wrapper [class*="col-"]:nth-child(even) .icon-box-v2-item {
  margin-top: 55px;
}

/* ------- STYLE TWO STYLE ------ */
.icon-box-v2-wrapper .row {
  align-items: center;
}

.icon-box-v2-item-style-two {
  text-align: center;
  margin-bottom: 50px;
}

.icon-box-v2-icon-style-two {
  background: rgba(255, 76, 100, 0.04);
  width: 190px;
  height: 190px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
  border-radius: 100px;
  color: var(--thm-color);
  position: relative;
  margin-bottom: 47px;
  transition: .4s;
}

.icon-box-v2-icon-style-two:before {
  content: "";
  position: absolute;
  content: "";
  background: transparent;
  height: 120%;
  width: 120%;
  border: 2px dashed rgb(249 83 83 / 40%);
  border-radius: 100%;

}

.icon-box-v2-icon-attr-style-two {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -10px;
  font-family: var(--heading-font);
  background: var(--thm-color);
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0;
  transition: .4s;
}

.icon-box-v2-item-style-two.active .icon-box-v2-icon-attr-style-two {
  opacity: 1;

}

.icon-box-v2-item-style-two.active .icon-box-v2-icon-style-two:before {
  border-color: var(--thm-color);
  animation: spin 10s linear infinite;
}

.icon-box-v2-title-style-two {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 13px;
}

.icon-box-v2-title-style-two a {
  color: var(--color-black);
}

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

.icon-box-v2-des-style-two {
  color: var(--color-content);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

.icon-box-v2-wrapper [class*="col-"]:nth-child(odd) .icon-box-v2-icon-style-two {
  width: 140px;
  height: 140px;
  font-size: 60px;
}

.icon-box-v2-wrapper [class*="col-"]:nth-child(odd) .icon-box-v2-icon-attr-style-two {
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  font-size: 16px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



@media screen and (min-width: 992px) and (max-width: 1500px) {
  .icon-box-v2-item .icon-box-v2-icon::after {
    left: 140px;
  }

  .icon-box-v2-item .icon-box-v2-icon::before {
    left: 140px;
  }
}

@media screen and (max-width: 1200px) {
  .icon-box-v2-wrapper [class*="col-"]:nth-child(even) .icon-box-v2-item {
    margin-top: 0;
  }

  .icon-box-v2-item .icon-box-v2-icon::after,
  .icon-box-v2-item .icon-box-v2-icon::before {
    display: none;
  }
}


@media screen and (max-width: 991px) {
  .icon-box-v2-icon-style-two {
    width: 140px;
    height: 140px;
    font-size: 60px;
  }

}

/* ------------ SERVICE V3 STYLE --------------- */

.service-v3-image {
  width: 325px;
  height: 325px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 330px;
  margin-bottom: 36px;
  display: inline-block;
  position: relative;
}


.service-v3-item .service-v3-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: .4s;
}

.service-v3-item:hover .service-v3-image img {
  transform: scale(1.1);
}

.service-v3-icon {
  z-index: 11;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 147, 77, 0.79);
  transform: scale(0);
  transition: .4s;
  border-radius: 100%;
}

.service-v3-item:hover .service-v3-icon {
  transform: scale(1);
}

.service-v3-icon a {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  fill: var(--color-white);
  filter: drop-shadow(0px 16px 51px rgba(0, 0, 0, 0.07));
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: var(--thm-color);
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.service-v3-icon a:hover {
  color: var(--thm-color);
}

.service-v3-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 13px;
}

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

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

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

.service-v3-item {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .service-v3-image {
    width: auto;
    height: auto;
  }

}

/* -------- SERVICE V4 STYLE ------------ */

.service-v4-icon {
  width: 116px;
  height: 116px;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--thm-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 50px;
  margin-bottom: 32px;
  transition: .4s;
}

.service-v4-item:hover .service-v4-icon {
  transform: rotateY(180deg);
}

.service-v4-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 17px;
}

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

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

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

.service-v4-content {
  padding: 40px 30px 32px;
  position: relative;
}

.service-v4-item {
  background: var(--color-white);
  margin-bottom: 20px;
  transition: .4s;
  overflow: hidden;
}

.service-v4-item:hover {
  background: var(--color-white);

  /* drop Shadow */
  box-shadow: 0px 9px 75px 0px rgba(2, 2, 2, 0.09);
}

.service-v4-wrapper .service-v4-image {
  overflow: hidden;
}

.service-v4-wrapper .service-v4-image img {
  transform: scale(1);
  transition: .4s;
  width: 100%;
}

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

.service-v4-item:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .6s linear;
}

.service-v4-btn a {
  color: var(--color-black);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  margin-top: 20px;
}

.service-v4-stitle {
  color: #9A9D9E;
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.service-v4-btn a:hover {
  color: var(--thm-color);
}

.service-v4-number {
  color: rgba(27, 57, 66, 0.15);
  text-align: center;
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  bottom: 22px;
  left: 16px;
}

/* --------- BLOG STYLE v3 ------ */



.blog-v3-title {
  text-transform: capitalize;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 24px;
}

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

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

.blog-v3-meta-item a {
  position: relative;
  color: var(--color-body);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 185.714% */
  text-transform: uppercase;
}

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

.blog-v3-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-v3-meta-item a:first-child::after {
  content: unset
}

a.blog-v3-btn.blog-v3-btn {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-v3-btn span:hover:after {
  transform: translateX(0);
}

.blog-v3-item .blog-v3-img.flx-img {
  min-width: 358px;
  width: 358px;
  height: 250px;
}

.blog-v3-item .blog-v3-img {
  position: relative;
  overflow: hidden;
  height: 300px;
  flex-shrink: 0;
  /* width: 388px; */
  height: 290px;
  flex-shrink: 0;
}

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

.blog-v3-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #E3E5DE;
  background: var(--color-white);
}

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

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

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

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

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

.blog-v3-content {
  padding: 2px 30px 43px;
}

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

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

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

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

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


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

.blog-v4-box {
  position: relative;
  display: block;
}

.blog-v4-img {
  overflow: hidden;
  height: 320px;
}

.blog-v4-box .blog-v4-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: .4s;
}

.blog-v4-box:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .5s linear;
}

.blog-v4-img a {
  width: 100%;
  height: 100%;
}

.blog-v4-box:hover .blog-v4-img img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}



.inner-box .blog-v4-content-area {
  position: relative;
  margin-bottom: 30px;
}

.blog-v4-content-area {
  position: relative;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-top: -100px;
  background: var(--color-white);
  z-index: 11;
}

.blog-v4-meta {
  padding: 11px 30px 9px;
  margin: 0;
  background: var(--thm-color);
}

.blog-v4-meta ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-v4-meta ul li {
  list-style: none;
}

.blog-v4-meta ul li a {
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  font-family: var(--body-font);
  text-transform: capitalize;
}

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

.blog-v4-meta li a:hover {
  color: var(--black-color);
}

.blog-v4-meta li i {
  margin-right: 5px;
  color: var(--color-white);
}

.blog-v4-content {
  padding: 21px 30px 30px;
  background: var(--color-white);
  box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
}

.blog-v4-title {
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 15px;
}

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

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

.blog-v4-des {
  color: var(--Gray-800, #878680);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 16px;
}

.blog-v4-content-area .blog-btn a {
  margin-top: 10px;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 0;
  background: var(--thm-color);
  padding: 12px 25px;
  text-transform: capitalize;
}

.blog-v4-content-area .blog-btn a:hover {
  color: var(--color-white);

}

.blog-v4-content-area .blog-btn a:before {
  background: var(--color-black);
}

@media (max-width: 767px) {
  .blog-v4-content-area {
    margin-left: 0;
    margin-top: -50px;
  }
}


/************* SERVICE V5 STYLE **************/
.service-v5-item {
  transition: .4s;
}

.service-v5-body-content {
  position: relative;
  z-index: 1;
}

.service-v5-content {
  padding: 34px;
  margin: -70px 30px 30px;
  position: relative;
  text-align: center;
  border-bottom: 4px solid var(--thm-color);
  background: var(--color-white);
  transition: 0.4s;
  box-shadow: 0px 41.04px 42.48px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 11;
}

.service-v5-content:before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--thm-color);
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}

.service-v5-item:hover .service-v5-content:before {
  top: 0;
  border-radius: 0;
  opacity: 1;
}

.service-v5-image {
  overflow: hidden;
}

.service-v5-item .service-v5-image img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 100%;
  height: 100%;
  transition: .4s;
}

.service-v5-item:hover .service-v5-image img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.service-v5-item:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .5s linear;
}


.service-v5-small-title {
  margin-bottom: 11px;
  transition: 0.4s;
  color: var(--Gray-800, #878680);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.service-v5-title {
  margin: 0;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}


.service-v5-item:hover .service-v5-small-title,
.service-v5-item:hover .service-v5-title,
.service-v5-item:hover .service-v5-title a {
  color: var(--color-white);
}

/* -------- COUNTER V3 STYLE -------- */

.counter-v3-item {
  border-radius: 30px;
  border: 1px solid var(--thm-color);
  background: var(--color-white);
  padding: 28px 40px 37px;
  margin-bottom: 20px;
}

.counter-v3-number {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid var(--thm-color);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.counter-v3-counter-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 14px;
}

.counter-v3-counter-description {
  color: var(--color-content);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  font-family: var(--body-font);
}

/* --------   SERVICE V6 STYLE --------- */












/* GENERAL STYLES FOR BOX AND OVERLAY */

.service-v6-wrapper {
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #bbb;
  text-align: center;
  position: relative;
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: 0px 10px 31px 0px rgba(169, 177, 193, 0.17);
}


.service-v6-wrapper .service-v6-image img {
  width: 100%;
  object-fit: cover;

}

.service-v6-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.service-v6-btn {
  color: var(--thm-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  font-family: var(--heading-font);
}


.service-v6-content {
  padding: 33px 35px 31px;
}

/* SLIDE IN */

.service-v6-hover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.service-v6-wrapper .service-v6-hover {
  transform: translateX(-101%);
  -webkit-transition: transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  border-radius: 15px;
  background: var(--thm-color);
  box-shadow: 0px 6px 15px 0px rgba(16, 76, 186, 0.15);
  display: flex;
  align-items: center;
  padding: 40px 35px 32px;
}

.service-v6-wrapper:hover .service-v6-hover {
  transform: translateX(0);
}

.service-v6-hicon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 75px;
  background: var(--thm-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 7px solid var(--color-white);
  font-size: 40px;
  color: var(--color-white);
  margin-bottom: 27px;
}

.service-v6-htitle {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

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

a.service-v6-hbtn {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.service-v6-hbtn:hover {
  color: var(--color-black);
}

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

.testi-v4-box {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 50px;
}

.testi-v4-description {
  margin-bottom: 34px;
  color: rgb(255 255 255 / 50%);
  font-family: var(--heading-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
}

.testi-v4-name {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  margin-bottom: 16px;
}

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

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

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

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

.testi-v4-next:hover,
.testi-v4-prev:hover {
  background: var(--color-white);
  color: var(--color-black);
}

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

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

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

.testi-v4-icon {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  font-weight: 800;
}

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

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

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

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

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

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

  .testi-v4-description {
    font-size: 20px;
    line-height: 36px;
  }

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

/* ----- progressbar ------  */
.circle-progress-wrp {
  box-shadow: 0px 18px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 30px 40px 25px;
  border-radius: 10px;
  background: var(--color-white);
  width: max-content;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  height: max-content;
}

.custom-progress {
  --progress-bar-width: 120px;
  --progress-bar-height: 120px;
}

.circular-progress.custom-progress {
  width: var(--progress-bar-width);
  height: var(--progress-bar-height);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circular-progress .inner-circle {
  position: absolute;
  width: calc(var(--progress-bar-width) - 20px);
  height: calc(var(--progress-bar-height) - 20px);
  border-radius: 50%;
  background-color: var(--color-white);
}

.circular-progress .percentage {
  position: relative;
  z-index: 1;
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--color-black);
}

.progress-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 15px;
}

.circle-progress-wrp.shape::after {
  content: '';
  mask-image: url(../image/a.png);
  -webkit-mask-image: url(../image/a.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 111;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--color-secondary);
  top: 10px;
  left: -25px;
  animation: progress_shape 2s linear 1s infinite alternate;
}

@keyframes progress_shape {
  0% {
    top: 0%;
  }

  100% {
    top: 20%;
  }
}

.progressBar-small-Img {
  display: flex;
  gap: 15px;
}

.progressBar-main-img {
  margin-bottom: 15px;
}


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

.team-v1-item {
  position: relative;
  transition: all 4s;
  margin-bottom: 20px;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 500px;
}

.team-v1-wrapper .team-v1-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s;
}

.team-v1-wrapper .team-v1-item:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.team-v1-content {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.4s;
  transform: scale(.4);
}

.team-v1-content-area {
  background: var(--color-white);
  padding: 24px 30px 30px;
  margin: 15px;
  border-radius: 10px;
  text-align: center;
}

.team-v1-item:hover .team-v1-content {
  opacity: 1;
  transition: all 0.4s;
  transform: scale(1);
}

.team-v1-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 5px;
}

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

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

.team-v1-stitle {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 15px;
  border-bottom: 1px solid #F1F1F1;
  margin-bottom: 20px;
}

.team-v1-social-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.team-v1-social-icon {
  display: inline-flex;
  justify-content: center;
  background: rgba(9, 61, 49, 0.10);
  height: 40px;
  width: 40px;
  align-items: center;
  border-radius: 100px;
  color: var(--thm-color);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.team-v1-social-icon:hover {
  background: var(--thm-color);
  color: var(--color-white);
}

.pagination-area ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.pagination-area ul li {
  list-style: none;
}

.pagination-area ul li a {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: .3s;
  -webkit-transition: .3s;
  background: rgba(9, 61, 49, 0.10);
  color: var(--thm-color);
  font-family: var(--heading-font);
}

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

/* dote style  */

.team-v1-pagination .swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  background: var(--thm-color);
  margin: 0 !IMPORTANT;
}

.team-v1-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}


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

.team-v2-box {
  height: 500px;
  overflow: hidden;
  position: relative;
  transition: .4s;
  margin-bottom: 30px;
  border-radius: 20px;
  max-width: 500px;
}

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

.team-v2-wrapper .team-v2-box:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.team-v2-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1111;
}

.team-v2-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  padding: 11px 18px;
  transition: all .3s ease-in-out;
  position: relative;
  opacity: 0;
  visibility: hidden;
}

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

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

.team-v2-stitle {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding: 2px 18px 1px;
  width: max-content;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}

.team-v2-box:hover .team-v2-stitle,
.team-v2-box:hover .team-v2-title {
  opacity: 1;
  visibility: visible;
}

.team-v2-stitle::before,
.team-v2-title::before {
  position: absolute;
  content: "";
  background: var(--thm-color);
  height: 100%;
  width: 0;
  z-index: -1;
  transition: all .3s ease-in-out;
  left: 0;
  top: 0;
}

.team-v2-stitle::before {
  background-color: var(--color-white);
}

.team-v2-box:hover .team-v2-stitle::before,
.team-v2-box:hover .team-v2-title::before {
  width: 100%;
}

.team-v2-social-item {
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 11;
}

.team-v2-social-item ul li a {
  color: var(--thm-color);
  font-family: "Font Awesome 6 Brands";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 0px;
  height: 35px;
  flex-shrink: 0;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  visibility: hidden;
  opacity: 0;
  transition: .4s;
}

.team-v2-social-item ul li a:hover {
  background: var(--thm-color);
  color: var(--color-white);
}

.team-v2-social-item ul {
  margin: 0;
  padding: 0;
}

.team-v2-social-item ul li {
  list-style: none;
}

.team-v2-box:hover .team-v2-social-item ul li a {
  width: 35px;
  opacity: 1;
  visibility: visible;
}


.team-v2-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: transparent;
  transition: background 0.4s ease;
  transition: .4s;
  opacity: 0;
}

.team-v2-box:hover:after {
  background: linear-gradient(93deg, rgba(82, 183, 254, 0.64) -31.33%, rgba(82, 183, 254, 0.00) 118.23%);
  transition: .4s;
  opacity: 1;
}

/* ------------ PROJECT V1 STYLE ----------- */

.project-v1-box {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  border-radius: 15px;
  height: 500px;
}

.project-content-item {
  position: absolute;
  /* opacity: 0; */
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.4s;
  /* transform: scale(.4); */
  height: 100%;
  width: 100%;
}

.project-v1-box-content {
  padding: 34px 35px;
  margin: 30px;
  height: -webkit-fill-available;
  display: flex;
  border-radius: 15px;
  background: rgba(9, 61, 49, 0.89);
  transform: scale(.4);
  transition: .4s;
  opacity: 0;
}

.project-v1-box:hover .project-v1-box-content {
  transform: scale(1);
  opacity: 1;
}

.project-v1-icon {
  list-style: none;

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transition: all 0.5s ease 0s;
  border-radius: 100px;
  background: var(--color-white);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-v1-icon a {
  line-height: 0;
}

.project-v1-content {
  margin-top: auto;
}

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

.project-v1-wrapper .project-v1-box:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.project-v1-cat {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.project-v1-cat li {
  list-style: none;
}

.project-v1-cat li a {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.project-v1-title {
  color: var(--color-white);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

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

.project-v1-title a:hover {
  color: var(--color-secondary);
}

.project-v1-arrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 80px;
  justify-content: flex-end;
}

.project-v1-arrow .button {
  border-radius: 5px;
  background: var(--color-black);
  padding: 18px 25px;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.project-v1-arrow .project-v1-next.button {
  background: var(--color-secondary);
  color: var(--color-black);
}

.project-v1-arrow .button:hover,
.testi-v1-arrow .button:hover {
  background: var(--color-white);
  color: var(--color-black);
  transition: .4s;
}

@media (max-width: 767px) {
  .project-v1-arrow {
    display: none;
  }
}

/* --------- TEAM V3 STYLE STARTE ------- */
.team-v3-image {
  height: 350px;
  overflow: hidden;
  position: relative;
  margin-bottom: 36px;
  border-radius: 15px;
}

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

.team-v3-item:hover .team-v3-image img {
  filter: grayscale(1.1);
}

.team-v3-item {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  padding: 0px 30px 41px;
  transition: .4s;
  margin-bottom: 30px;
}

.team-v3-item:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 50px;
  background: var(--color-white);
  border-radius: 15px;
  z-index: -1;
  transition: .4s;

}

.team-v3-item:hover:after {
  box-shadow: 0px 9px 75px 0px rgba(2, 2, 2, 0.04);
}

.team-v3-image:before {
  content: '';
  height: 180%;
  width: 100%;
  background: rgba(255, 76, 100, 0.42);
  position: absolute;
  right: -40%;
  top: -155%;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(315deg);
  transition: .4s;
  opacity: 0;
  z-index: 1;
}

.team-v3-image:after {
  content: '';
  height: 100%;
  width: 100%;
  background: rgba(227, 152, 162, 0.55);
  position: absolute;
  right: -170%;
  top: -170%;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(315deg);
  transition: .4s;
  opacity: 0;
  z-index: 1;
}

.team-v3-item:hover .team-v3-image:before {
  right: -40%;
  top: -40%;
  opacity: 1;
}

.team-v3-item:hover .team-v3-image:after {
  right: -100%;
  top: -100%;
  opacity: 1;
}

.team-v3-title {
  color: var(--color-black);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 2px;
}

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

.team-v3-pagination.swiper-pagination-bullets {
  margin-top: 20px;
}

/* Team Three team-v3-social */

.team-v3-wrapper .team-v3-social {
  padding: 10px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  bottom: 45px;
  left: 50%;
  background: var(--thm-color);
  text-align: center;
  transform: translate(-50%, 0px) rotateY(90deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 100px;
  min-width: 180px;
  z-index: 1111;
}

.team-v3-item:hover .team-v3-social {
  transform: translate(-50%, 0px) rotateY(0deg);
}

.team-v3-item .team-v3-social li {
  display: inline-block;
}

.team-v3-item .team-v3-social li a {
  font-size: 14px;
  width: 33px;
  color: var(--color-white);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-v3-item .team-v3-social li a:hover {
  color: var(--color-white);
}

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

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

.team-v4-image {
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  height: 200px;
  width: 200px;
  margin: auto;
  margin-bottom: 23px;
}

.team-v4-image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: red; */
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: 1111;
  content: '';
  background: linear-gradient(135deg, var(--thm-color) 0%, rgba(2, 8, 20, 0.00) 100%);
}

.team-v4-item:hover .team-v4-image:after {
  opacity: 1;
}

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

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

.team-v4-title {
  color: var(--color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.team-v4-stitle {
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: .4s;
}

.team-v4-item:hover .team-v4-stitle {
  color: var(--thm-color);
}

.team-v4-border {
  height: 100%;
  width: 1px;
  background: #E4E8F0;
  position: absolute;
  right: -10px;
  top: 0;
}

.team-v4-border:after {
  content: "";
  height: 50px;
  width: 1px;
  right: 0px;
  bottom: 0;
  background: var(--thm-color);
  border-radius: 50%;
  position: absolute;
}

.team-v4-wrapper .swiper-slide:nth-child(even) .team-v4-border:after,
.team-v4-wrapper [class*="col-"]:nth-child(even) .team-v4-border:after {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}




.team-v4-wrapper .swiper-slide:nth-child(odd) .team-v4-border:after,
.team-v4-wrapper [class*="col-"]:nth-child(odd) .team-v4-border:after {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BC;
  animation-name: MOVE-BC;
}

.team-v4-wrapper .swiper-slide:last-child .team-v4-border,
.team-v4-wrapper [class*="col-"]:last-child .team-v4-border {
  display: none;
}

@-webkit-keyframes MOVE-BG {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes MOVE-BG {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes MOVE-BC {

  0% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }
}

@keyframes MOVE-BC {
  0% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
  }
}

.team-v4-social {
  padding: 0;
  position: ABSOLUTE;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  list-style: none;
  transition: all 0.5s ease 0s;
  opacity: 0;
  z-index: 111111;
}


.team-v4-item:hover .team-v4-social {
  top: 45%;
  opacity: 1;
}

.team-v4-social li {
  display: inline-block;
  margin-right: 5px;
}

.team-v4-social li a {
  width: 35px;
  height: 35px;
  color: var(--thm-color);
  background: var(--color-white);
  font-size: 14px;
  line-height: 14px;
  display: flex;
  border-radius: 50%;
  transition: all 0.4s linear 0s;
  justify-content: center;
  align-items: center;
}

.team-v4-social li a:hover {
  transform: translateY(-10px);
  text-decoration: none;
}

/* ----------- TEAM V5 STYLE ------- */

.team-v5-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.team-v5-image {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  min-width: 160px;
  border-radius: 100px;
  overflow: hidden;
}

.team-v5-item .team-v5-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .4s;
}

.team-v5-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

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

.team-v5-title a:hover {
  color: var(--color-black);
}

.team-v5-stitle {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.team-v5-phone {
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.team-v5-phone a {
  color: var(--color-white);
}

.team-v5-phone a:hover {
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .team-v5-item {
    justify-content: center;
  }

}


/* ------------ PROJECT V2 STYLE ----------- */


.project-v2-box {
  position: relative;
  transition: all .4s;
  margin-bottom: 20px;
  border-radius: 30px;
  height: 500px;
  overflow: hidden;
}

.project-v2-box a {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-v2-wrapper .project-v2-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transform: scale(1);
  transition: .4s;
}

.project-v2-wrapper .project-v2-box:hover img {
  transform: scale(1.1);

}

.project-v2-box:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .4s linear;
}

.project-v2-content {
  border-radius: 20px;
  background: var(--color-white);
  margin: 30px;
  padding: 28px 30px 27px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.style-two .project-v2-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  opacity: 0;
  padding: 33px 35px 29px;
  text-align: left;
}

.style-two:hover .project-v2-content {
  opacity: 1;
}

.project-v2-box.style-two:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: -100%;
  transition: .4s;
  background: linear-gradient(180deg, rgba(242, 239, 239, 0.00) 0%, rgba(13, 84, 110, 0.87) 76.02%), #d3d3d300 50% / cover no-repeat;
}

.project-v2-box.style-two:hover::after {
  bottom: 0;

}

.project-v2-content-item {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.4s;
  z-index: 1;
}


.project-v2-title {
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1px;
}

.style-two .project-v2-title {
  margin-bottom: 0;
}

.style-two .project-v2-title a {
  color: var(--color-white);
}

.style-two .project-v2-title a:hover {
  color: var(--color-black);
}

ul.project-v2-cat li a {
  color: var(--color-body);
  text-align: center;
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 185.714% */
  text-transform: uppercase;
}

ul.project-v2-cat {
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

ul.project-v2-cat li {
  list-style: none;
}

.style-two ul.project-v2-cat li a {
  color: var(--color-white);
  margin-bottom: 5px;
}

.project-v2-content:after {
  content: '';
  background: var(--thm-color);
  height: 45px;
  width: 45px;
  position: absolute;
  left: -50px;
  border-radius: 100px;
  bottom: -50px;
  z-index: 11;
  transition: all .4s;
}

.project-v2-content:before {
  content: '';
  background: rgb(82 183 254 / 10%);
  height: 65px;
  width: 65px;
  position: absolute;
  left: -80px;
  border-radius: 100px;
  bottom: -80px;
  transition: all .4s;
}

.project-v2-box:hover .project-v2-content:before {
  left: -25px;
  bottom: -25px;
}

.project-v2-box:hover .project-v2-content:after {
  left: -20px;
  bottom: -20px;
}

.project-v2-arrow {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 80px;
  justify-content: flex-end;
}

.project-v2-arrow .button {
  display: flex;
  box-shadow: 0px 6px 50px rgba(37, 37, 37, 0.05);
  width: 67px;
  height: 67px;
  flex-shrink: 0;
  background: var(--thm-color);
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: .4s;
}

.project-v2-arrow.style-two-arrwo .button {
  width: 110px;
  height: 50px;
  gap: 5px;
  border-radius: 5px;
  background: rgba(0, 78, 102, 0.12);
  color: var(--thm-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.project-v2-arrow .button:hover {
  background: rgb(82 183 254 / 10%);
  color: var(--thm-color);
}

.project-v2-arrow.style-two-arrwo .button:hover {
  color: var(--color-white);
  background: var(--thm-color);
}

.project-v2-arrow.style-two-arrwo .project-v2-next.button {
  color: var(--color-white);
  background: var(--thm-color);
}

.project-v2-arrow.style-two-arrwo .project-v2-next.button:hover {
  background: rgba(0, 78, 102, 0.12);
  color: var(--thm-color);
}

.style-two .project-v2-content:before,
.style-two .project-v2-content::after {
  content: unset;
}

.style-two .play-icon>i {
  background: var(--thm-color);
  border: 1px solid var(--color-white);
}

.style-two .play-icon:after,
.style-two .play-icon:before {
  border: 5px solid var(--thm-color);
}



.project-v2-line {
  left: 0;
  top: 0;
  border-left: 5px solid;
  border-top: 5px solid;
  border-top-left-radius: 30px;
}

.project-v2-line2 {
  top: 0;
  right: 0;
  border-right: 5px solid;
  border-top: 5px solid;
  border-top-right-radius: 30px;
}

.project-v2-line3 {
  bottom: 0;
  right: 0;
  border-right: 5px solid;
  border-bottom: 5px solid;
  border-bottom-right-radius: 30px;
}

.project-v2-line4 {
  left: 0;
  bottom: 0;
  border-left: 5px solid;
  border-bottom: 5px solid;
  border-bottom-left-radius: 30px;
}

.project-v2-line,
.project-v2-line2,
.project-v2-line3,
.project-v2-line4 {
  position: absolute;
  height: 33%;
  width: 34%;
  z-index: 1;
  transition: .4s;
  opacity: 0;
  border-color: var(--color-white);
}

.project-v2-box:hover .project-v2-line,
.project-v2-box:hover .project-v2-line2,
.project-v2-box:hover .project-v2-line3,
.project-v2-box:hover .project-v2-line4 {
  margin: 25px;
  opacity: 1;
}

.project-v2-pagination {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .project-v2-arrow {
    display: none;
  }
}

/* -------- project v3 style ------- */
.project-v2-box.style-v3 {
  border-radius: 20px;
}

.project-v3-content-item {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.4s;
  z-index: 1;
}

.style-v3 .project-v3-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: transparent;
  padding: 20px 40px 34px;
  position: relative;
  overflow: hidden;
}

.project-v3-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

.project-v3-title a:hover,
.project-v3-title a {
  color: var(--color-white);
}

.style-v3 .project-v2-cat li a {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.project-v2-box.style-v3:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, var(--thm-color) 100%), #d3d3d300 50% / cover no-repeat;
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: -100%;
  transition: .4s;
}

.project-v2-box.style-v3:hover::after {
  bottom: 0;
}

.project-v2-video-icon {
  margin-bottom: 5px;
}

.style-v3 .play-icon>i {
  background: var(--thm-color);
  border: 1px solid var(--color-white);
}

.style-v3 .play-icon:after,
.style-v3 .play-icon:before {
  border: 3px solid var(--color-white);
}

.style-v3 .play-icon:after {
  transition: all ease 0.2s;
  background: var(--thm-color);
}

.project-v2-arrow.style-v3-arrow .button {
  width: 110px;
  height: 50px;
  background: var(--color-white);
  color: var(--thm-color);
  gap: 5px;
  border-radius: 0;
  text-transform: uppercase;
}

.project-v2-arrow.style-v3-arrow .button:hover {
  background: var(--thm-color);
  color: var(--color-white);
}

.project-v2-arrow.style-v3-arrow .project-v2-next.button {
  color: var(--color-white);
  background: var(--thm-color);
}

.project-v2-arrow.style-v3-arrow .project-v2-next.button:hover {
  background: var(--color-white);
  color: var(--thm-color);
}

/* -----------  SECTION TITLE STYLE ------- */

.nobility-section-title-wrapper {
  display: flex;
  justify-content: flex-start
}


.nobility-section-title-content {
  text-align: center
}

.nobility-section-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 21px;
  text-transform: capitalize;
}

.nobility-section-title.button-underline span {
  display: inline-flex;
}

.nobility-section-title.button-underline span:after {
  height: 3px;
}

.nobility-section-title.button-underline span:hover:after {
  transform: translateX(0);
}

.nobility-section-small-title {
  color: var(--color-secondary);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  padding-right: 15px;

}

.nobility-section-small-title span {
  margin-right: 5px;
}

.nobility-section-small-title:before {
  content: "";
  height: 8px;
  width: 8px;
  background: var(--color-secondary);
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  left: 0;
  border-radius: 2px;
}

.nobility-section-small-title::after {
  content: "";
  height: 8px;
  width: 8px;
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  right: 0;
  border-radius: 2px;
}

.nobility-section-small-title span.title-borders:hover {
  color: unset;
}

.nobility-section-description ul {
  margin-bottom: 0;
  margin-top: 11px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

@media (max-width: 400px) {

  .nobility-section-title.button-underline span:after {
    width: 0px;
  }
}

/* ----------   SLIDER V2 STYLE ---------- */
.slider-v2-content-box {
  position: relative;
  z-index: 1;
}

.animeslide-slide.swiper-slide-active .slider-v1-stitle {
  transition-delay: 0.4s;
}

.slider-v2-content-box .slider-v1-stitle {
  color: var(--color-white);
  margin-bottom: 15px;
}

.slider-v2-content-box .slider-v1-stitle:before,
.slider-v2-content-box .slider-v1-stitle::after {
  background: var(--color-white);
}

.animeslide-slide.swiper-slide-active .slider-v2-title {
  transition-delay: 0.8s;
}

.slider-v2-title {
  color: var(--color-white);
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  margin-bottom: 29px;
}

.slider-v2-title.button-underline span {
  display: inline-flex;
  font-weight: 200;
}

.slider-v2-title.button-underline span:after {
  bottom: 4px;
  height: 2px;
}

.slider-v2-title.button-underline span:hover:after {
  transform: translateX(0);
}

.animeslide-slide.swiper-slide-active .slider-v1-highlight {
  transition-delay: 1s;
}

.slider-v1-highlight {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--heading-font);
  font-size: 125px;
  font-style: normal;
  font-weight: 800;
  line-height: 110px;
  text-transform: uppercase;
  margin-bottom: 38px;
  margin-top: 10px;
  transition-delay: .8s;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  background-position: center;
}

.animeslide-slide.swiper-slide-active .slider-v2-des {
  transition-delay: 1s;
}

.slider-v2-des {
  color: var(--color-white);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  transition-delay: .6s;
  margin-bottom: 41px;
}

.animeslide-slide.swiper-slide-active .slider-v1-buttom-area {
  transition-delay: 1.4s;
}

.slider-v1-buttom-area {
  display: inline-flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}



.slider-v2-scrollbar {
  width: 56%;
}

.animeslide-slide.swiper-slide-active [data-animate] {
  opacity: 1;
  transform: none;
}

[data-animate] {
  opacity: 0;
  transition: all 0.8s ease-out;
}

[data-animate="bottom"] {
  transform: translate3d(0, 15px, 0);
}

.slider-v1-button a.theme-button {
  border-radius: 100px;
  background: var(--thm-color);
  color: var(--color-white);
  border: 0;
  text-transform: capitalize;
}

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

.slider-v1-button a.theme-button:hover {
  color: var(--thm-color);
}

.slider-arrow-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--color-white);
  max-width: 550px;
  z-index: 1;
  padding: 35px 35px;
  right: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-arrow-content .cell {
  position: relative;
  opacity: 1;
  z-index: 2;
  height: 40px;
  bottom: inherit;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.slider-arrow-content .animeslide-scrollbar {
  margin-top: 16px;
}

.slider-arrow-content .animeslide-scrollbar-drag {
  height: 6px;
}

.slider-arrow-content .swiper-horizontal>.swiper-scrollbar,
.slider-arrow-content .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 50;
  height: 5px;
  width: 98%;
  top: 0;
  margin: auto;
  right: 0;
}

.slider-arrow-content .swiper-scrollbar-drag {
  background: var(--thm-color);
}

.slider-v2-arrow {
  width: 18%;
}

.slider-arrow-content .slider-arrow-next:after,
.slider-arrow-content .slider-arrow-prev:after {
  font-size: 22px;
  color: var(--thm-color);
}

.cell.slider-v2-pagination {
  width: 14%;
  padding: 0;
}

.slider-v2-pagination .animeslide-pagination b,
.slider-v2-pagination .animeslide-pagination {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  bottom: 0;
}


.slider-v2-pagination .animeslide-pagination span {
  padding-left: 5px;
  padding-right: 5px;
}

.animeslide-slide.swiper-slide-active .slider-v2-video-icon {
  transition-delay: 0.4s;
}

.slider-v2-video-icon {
  text-align: right;
}

.slider-v2-video-icon .play-icon>i {
  background: rgb(255 255 255 / 45%);
}

.slider-v2-video-icon .play-icon:after,
.slider-v2-video-icon .play-icon:before {
  border: 1px solid var(--color-white);
}

.slider-v2-pagination span.swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  /* font-family: Urbanist; */
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  opacity: 1;
  border: 1px solid rgba(159, 161, 167, 0.21);
}

.slider-v2-wrapper {
  position: relative;
}

.slider-v2-wrapper .slider-v2-pagination.swiper-pagination-bullets {
  position: absolute;
  left: 100px;
  top: 50%;
  z-index: 1111;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  transform: translateY(-18%);
  width: auto;
  transition: .4s;
}

.slider-v2-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--thm-color);
}

.slider-v2-arrow2 .button {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  stroke-width: 1px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(3.5px);
  border-radius: 100px;
  color: var(--color-white);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.slider-v2-arrow2 {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 50px;
  z-index: 1;
  left: 50px;
}

.slider-v1-button .button-underline span:after {
  bottom: 0;
}

.slider-v1-button:hover .button-underline span:after {
  transform: translateX(0);
}

.slider-v2-image {
  margin-right: -150px;
  margin-left: 50px;
}


.slider-v2-arrow3 {
  position: relative;
  position: absolute;
  top: 49%;
  z-index: 111;
  left: 0;
  right: 0;
}

.slider-v2-arrow3 .button {
  position: absolute;
  color: var(--color-white);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: .4s;
}

.slider-v2-arrow3 .button:hover {
  color: var(--thm-color);
}

.slider-v2-arrow3 .slider-arrow-prev.button {
  left: 100px;
}

.slider-v2-arrow3 .slider-arrow-next.button {
  right: 100px;
}

@media (max-width: 1500px) {
  .slider-v2-image {
    margin-right: 0px;
    margin-left: 0;
  }
}

@media (max-width: 1599px) {
  .slider-v2-wrapper .slider-v2-pagination.swiper-pagination-bullets {
    left: auto;
    right: 20px;
  }

  .slider-v2-arrow3 .slider-arrow-prev.button {
    left: 80px;
  }

  .slider-v2-arrow3 .slider-arrow-next.button {
    right: 80px;
  }
}

@media (max-width: 1450px) {
  .slider-v2-arrow3 .slider-arrow-prev.button {
    left: 40px;
  }

  .slider-v2-arrow3 .slider-arrow-next.button {
    right: 40px;
  }

  .slider-v1-item-bg:before {
    width: 60%;
  }
}

@media (max-width: 1200px) {
  .slider-v2-image {
    display: none;
  }
}

@media (max-width: 991px) {
  .slider-v2-video-icon {
    display: none;
  }

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

  .slider-v2-wrapper .slider-v2-pagination.swiper-pagination-bullets {
    right: 40px;
  }

  .slider-v2-image {
    margin-left: 0px;
    margin-top: 50px;
    width: 90%;
    text-align: center;
  }


  .slider-v2-arrow3 .slider-arrow-prev.button {
    left: 15px;
  }

  .slider-v2-arrow3 .slider-arrow-next.button {
    right: 15px;
  }

  .slider-v1-item-bg:before {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .slider-v2-title {
    font-size: 48px;
    line-height: normal;
  }

  .slider-arrow-content {
    padding: 35px 15px;
  }

  .slider-v2-arrow {
    width: 25%;
  }

  .cell.slider-v2-pagination {
    width: 20%;
  }

  .slider-v2-scrollbar {
    width: 50%;
  }

  .slider-v2-wrapper .slider-v2-pagination.swiper-pagination-bullets {
    display: none;
  }

  .slider-v2-arrow2 {
    display: none;
  }

  .slider-v2-arrow3 {
    display: none;
  }
}

/* ------------ NOVILITY AUDIO BUTTON STYLE ----- */

.audio-player {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.audio-player button {
  background-color: #d9a253;
  border: none;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  cursor: pointer;
  color: var(--color-white);
  font-size: 25px;
  line-height: 0;
}

.waveform-container {
  display: flex;
  position: relative;
  height: 60px;
  max-width: 450px;
  align-items: center;
}

.waveform {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  width: max-content;
}

.waveform div {
  width: 2px;
  margin-right: 2px;
  transition: height 0.3s ease, background-color 0.8s ease;
}

@media (max-width: 767px) {
  .waveform-container {
    max-width: 400px;
  }

  .waveform div {
    width: 1px;
    margin-right: 2px;
  }
}

@media (max-width: 500px) {
  .waveform-container {
    max-width: 300px;
  }

  .waveform div {
    margin-right: 1px;
  }

}

/* ------------ DONATED V1 STYLE ----- */
.donate-v1-item {
  border-radius: 10px;
  border: 1px solid #E7F1EC;
  background: #FCFCF5;
  padding: 30px 30px 22px;
  margin-bottom: 24px;
  transition: .4s;
}

.donate-v1-item:hover {
  background: var(--thm-color);
  box-shadow: 0px 9px 18px 0px rgba(54, 54, 53, 0.08);
}

.donate-v1-img {
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.donated-v1-cat {
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 10px;
}

.donated-v1-cat li {
  list-style: none;
}


.donated-v1-cat li a {
  border-radius: 100px;
  border: 1px solid #E2E5E7;
  background: var(--thm-color);
  display: inline-flex;
  padding: 10px 25px;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: .4s;
}

.donate-v1-item:hover .donated-v1-cat li a {
  color: var(--thm-color);
  background: var(--color-white);
}

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

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

.donate-v1-item:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .6s linear;
}

.donate-v1-title {
  color: var(--color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-top: 10px;
  margin-bottom: 11px;
}

.donate-v1-item:hover .donate-v1-title a {
  color: var(--color-white);
}

.donate-v1-item:hover .donate-status {
  color: #AEBFBB;
}

.donate-v1-item:hover .donate-v1-desc {
  color: #AEBFBB;

}

.donate-skillbar-item {
  display: inline-block;
  width: 100%;
}

.donate-progress-bar .progress,
.donate-skillbar-item .skillbar {
  height: 12px;
  position: relative;
  text-align: right;
  border-radius: 100px;
  border: 1px solid rgba(210, 233, 220, 0.62);
  background: #E3E4E7;
}

.donate-progress-bar .progress-bar,
.count-bar {
  height: 100%;
  position: relative;
  text-align: right;
  padding-right: 0;
  border-radius: 10px;
  overflow: visible !important;
  background: var(--thm-color);
  box-shadow: 0px 10px 31px 0px rgba(169, 177, 193, 0.17);
  width: 0;
  /* Initial state */
  height: 100%;
  /* or any height */
  position: relative;
}

.progress-slider {
  background-color: var(--color-white);
  border: 3px solid var(--thm-color);
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.donate-progress-bar .progress {
  overflow: visible;
  margin-bottom: 8px;
}

.donate-progress-bar .progress-bar:after {
  content: '';
  background-color: var(--color-white);
  border: 3px solid #143d31;
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.donate-status {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.nav.donation-v1-tab-menu {
  display: flex;
  gap: 18px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.donation-v1-tab-menu .donation-v1-menu-btn {
  display: inline-flex;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #E2E5E7;
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  background: var(--color-white);
}

.donation-v1-tab-menu .donation-v1-menu-btn:hover,
.donation-v1-tab-menu .donation-v1-menu-btn.active {
  background: var(--thm-color);
  color: var(--color-white);
}

.donate-v1-item:hover .donate-progress-bar .progress-bar,
.donate-v1-item:hover .count-bar {
  background: var(--color-secondary);
}

.donate-v1-item:hover .progress-bar:after,
.donate-v1-item:hover .progress-slider {
  border-color: var(--color-secondary);
}

/* ------------ DONATED STYLE V2 --------- */
.donate-v2 .donated-v1-cat li a {
  background: var(--color-secondary);
  color: var(--thm-color);
  border: none;
}

.donation-give-form-goal {
  border-radius: 5px;
  background: var(--thm-color);
  padding: 15px 25px;
  transition: .4s;
  margin-bottom: 30px;
}

.donation-give-form-goal ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.donation-give-form-goal ul li {
  list-style: none;
  display: inline-block;
}

.donate-goal-residual {
  padding: 0 15px;
  border-left: 1px solid;
  border-right: 1px solid;
  text-align: center;
}

.donate-goal-status {
  color: #AEBFBB;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.donate-goal-status.residual {
  padding: 0 15px;
  border-left: 1px solid;
  border-right: 1px solid;
  text-align: center;
}

.donate-v2 .donate-v1-img {
  margin-bottom: 27px;
}

.donate-v2-title {
  color: var(--color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 25px;
}

.donate-style-two .donate-v2-title {
  margin-bottom: 11px;
}

.donate-v2 .donate-skillbar-item .skillbar {
  margin-bottom: 19px;
}

.donate-v2 .donate-skillbar-item .skillbar.two {
  margin-bottom: 0px;
}

.donate-v1-item:hover .donate-v2-title a {
  color: var(--color-white);
}

.donate-v1-item:hover .donation-give-form-goal {
  background: rgba(217, 217, 217, 0.14);
}

.donate-v2-btn a.theme-button {
  border: 0;
  border-radius: 5px;
  background: var(--color-secondary);
  width: 100%;
  text-align: center;
  text-transform: capitalize;
}

.donate-v2-btn .theme-button::before {
  background: var(--color-white);
}

.donate-v2-btn a.theme-button:hover {
  color: var(--thm-color);
}

.donate-v2-desc {
  margin-bottom: 30px;
}

.donate-style-two .donate-v2-desc {
  margin-bottom: 15px;
}

.donate-v1-item:hover .donate-v2-desc {
  color: #AEBFBB;
}

.donate-style-two .donate-v2-btn {
  margin-top: 23px;
}

.donation-v2-arrow {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-bottom: 80px;
}

.donation-v2-arrow .button {
  width: 67px;
  height: 67px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: rgb(9 61 49 / 10%);
  color: var(--thm-color);
  font-size: 18px;
  transition: .4s;
}

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

.donation-v2-pagination {
  margin-top: 26px;
}

@media (max-width: 1024px) {
  .donation-v2-arrow .button {
    display: none;
  }
}

/* ------------   DONATION FORM STYLE ---------- */
.donation-item-form form[id*=give-form] .give-donation-amount {
  margin: 0 0 15px;
  margin-right: 5px;
}

.donation-item-form button.give-btn {
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  border-radius: 4px;
  background: rgba(39, 81, 77, 0.46);
  line-height: 26px;
  padding: 11px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 149px;
  border: 1px solid transparent;
}

.donation-item-form button.give-btn.give-default-level {
  border: 1px solid var(--color-white);
  background: var(--thm-color);
}


.donation-item-form [id*=give-form].give-display-modal .give-btn {
  margin: 0 0px 6px;
}

.donation-item-form [id*=give-form].give-display-modal .give-btn.give-btn-modal {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.donation-item-form button.give-btn.give-btn-modal {
  border: 1px solid var(--color-white);
  background: var(--thm-color);
  border: none;
}

ul#give-donation-level-button-wrap {
  margin-bottom: 14px;
}

.donation-item-form .give-total-wrap span.give-currency-symbol {
  display: none;
}

.donation-wrapper-area .donation-item-form form[id*=give-form] .give-donation-amount input.give-amount-top {
  width: 100%;
}

.donation-item-form form[id*=give-form] .give-donation-amount #give-amount {
  border-radius: 4px;
  border: 1px solid var(--color-black);
  background: var(--color-white);
  color: #545659;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
}

.donation-item-form .give-goal-progress .progress-bar {
  display: none;
}

.donation-item-form .give-goal-progress {
  margin-bottom: 0;
}

.donation-item-form .give-goal-progress .income,
.donation-item-form .give-goal-progress .raised {
  color: var(--thm-color);
  font-size: 16px;
  /* font-style: normal; */
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 21px;
}

@media (max-width: 568px) {
  #give-donation-level-button-wrap>li {
    width: 100%;
  }

  .donation-item-form button.give-btn {
    width: 100%;
  }

  .donation-item-form form[id*=give-form] .give-donation-amount {
    margin-right: 0px;
  }
}

/* --------- DONATED V3 STYLE ---------- */

.donate-v3-item .donate-progress-bar .progress,
.donate-skillbar-item .skillbar {
  background: var(--color-white);
}

.donate-v3-button-area {
  background: var(--color-secondary);
  padding: 30px 45px;
}

.donate-v3-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
}

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

.donate-v3-title a:hover {
  color: var(--color-secondary);
}

.donate-v3-desc {
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

.donate-v3-item {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.donate-v3-img {
  position: relative;
  overflow: hidden;
  height: 399px;
}

.donate-v3-item .donate-v3-img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: .4s;
  object-fit: cover;
}

.donate-v3-item:hover .donate-v3-img img {
  transform: scale(1.1);
}

.donate-v3-item:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .6s linear;
}
.donate-v3-content {
  position: absolute;
  bottom: 0;
  padding: 30px;
  padding: 0px 45px 36px;
  z-index: 11;
}

.donate-v3-item .progress-slider {
  border: 4px solid var(--thm-color);
  width: 25px;
  height: 25px;
}

.donate-v3-item .donate-skillbar-item .skillbar {
  height: 15px;
}

.donate-v3-status {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.donate-v3-gole-area {
  margin-top: 10px;
}

.donation-v3-pagination span.swiper-pagination-bullet {
  position: relative;
}

.donation-v3-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  content: '';
  height: 150%;
  width: 150%;
  border: 1px solid var(--thm-color);
  position: absolute;
  left: -25%;
  bottom: -25%;
  border-radius: 100px;
}

.donation-v3-pagination {
  margin: 5px;
  position: relative;
  margin-top: 25px;
}

.donate-v3-item .donated-v1-cat {
  left: 45px;
  top: 45px;
}

.donate-v3-item .donated-v1-cat li a {
  color: var(--thm-color);
  background: var(--color-white);
}

.donate-v3-item:hover .donated-v1-cat li a {
  color: var(--color-white);
  background: var(--thm-color);
}

@media (max-width: 1466px) {
  .donate-v3-title {
    font-size: 36px;
  }

  .donate-v3-status {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .donate-v3-status {
    font-size: 16px;
  }

  .donate-v3-title {
    font-size: 30px;
  }

  .donate-v3-content {
    padding: 0px 30px 31px;
  }

  .donate-v3-button-area {
    padding: 30px 30px;
  }

  .donate-v3-item .donated-v1-cat {
    left: 30px;
    top: 30px;
  }

}

/* ----------NOBILITY FORM V1 ------ */

.nobility-contact-from-v1-item {
  border-radius: 15px;
  background: var(--thm-color);
  padding: 52px 60px 60px;
}

.nobility-form-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.nobility-form-des {
  color: #D7DBE5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.nobility-contact-from-v1-item .nobility-input-area input[type="text"],
.nobility-contact-from-v1-item .nobility-input-area input[type="email"],
.nobility-contact-from-v1-item .nobility-input-area input[type="number"],
.nobility-contact-from-v1-item .nobility-input-area textarea {
  background: transparent;
  margin-bottom: 25px;
  border: unset;
  border-bottom: 1px solid rgba(254, 254, 254, 0.26);
  border-radius: 0;
  padding: 10px 0;
  color: var(--color-white);
  line-height: normal;
}

.nobility-input-area textarea::placeholder,
.nobility-input-area input::placeholder {
  color: var(--color-white);
}

.nobility-contact-from-v1-item .button input[type=submit] {
  margin-bottom: 0;
}

.wpcf7-spinner {
  position: absolute;
}

@media (max-width: 767px) {
  .nobility-contact-from-v1-item {
    padding: 42px 30px 50px;
  }
}

/* 
    /* -------------------------- Team Details---------------------------- 
*/
.team-details .container-fluid,
.team-details .container {
  padding: 0 10px;
}

.team-details-wraper {
  padding: 100px 100px 84px;
  box-shadow: 0px 9px 60px rgba(8, 20, 44, 0.07);
  border: 1px solid #e3e8f4;
  border-radius: 15px;
}

.team-details-wraper .team-datails-image img {
  border-radius: 15px;
}

.team-details-content-wrapper {
  margin-left: 40px;
}

.team-details-top-content {
  border-bottom: 1px solid #e3e8f4;
  padding-bottom: 40px;
  margin-bottom: 35px;
}

.team-details-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 6px;
}

.team-details-designation {
  line-height: 20px;
  margin-bottom: 26px;
  font-size: 18px;
}

.team-datails-dec {
  margin-bottom: 22px;
}

.team-details-social-area {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-details-social-area li {
  display: inline-block;
}

.team-details-social-area li a {
  height: 35px;
  width: 35px;
  background: var(--color-white);
  box-shadow: 0px 7px 23px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-color);
  font-size: 14px;
  margin-right: 5px;
  border-radius: 50%;
}

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

.team-details-contact-icon {
  height: 50px;
  width: 50px;
  box-shadow: 0px 10px 35px rgba(35, 31, 80, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--thm-color);
}

.team-details-contact-area {
  display: inline-flex;
  margin-bottom: 30px;
  width: 49%;
  gap: 15px;
}

.team-details-contact-label {
  margin-bottom: 4px;
}

.team-details-contact-text {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: var(--color-black);
}

.team-details-contact-text a {
  color: var(--color-black);
}

.team-details-contact-text a:hover {
  color: var(--thm-color);
}

@media only screen and (max-width: 1250px) and (min-width: 1100px) {
  .team-details-wraper {
    padding: 100px 80px 100px;
  }
}

@media only screen and (max-width: 1099px) and (min-width: 768px) {
  .team-details-wraper {
    padding: 100px 60px 67px;
  }
}

@media (max-width: 991px) {
  .team-details-content-wrapper {
    margin-left: 0px;
  }

  .team-datails-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .team-details-wraper {
    padding: 80px 25px;
  }

  .team-details-contact-area {
    width: 100%;
  }

  .team-details-contact-area:last-child {
    margin-bottom: 0;
  }
}

/* -------------  
/* ----------- FOOTER BLOG WIDGET -------- ------
--------------*/

.footer-widget-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  margin-bottom: 22px;
  display: inline-block;
}

.footer-widget-title.after-border {
  margin-bottom: 44px;
}

.footer-widget-title.after-border:after {
  position: absolute;
  content: "";
  width: 40px;
  background: var(--thm-color);
  height: 2px;
  left: 0;
  bottom: -16px;
  border-radius: 5px;
}

.footer-widget-title.after-border:before {
  content: "";
  position: absolute;
  left: 45px;
  bottom: -16px;
  width: 6px;
  height: 2px;
  background: var(--thm-color);
  border-radius: 100%;
}

.footer-blogPost-wrp .footer-widget-title.after-border {
  margin-bottom: 50px;
}

.footer-blogPost-wrp .footer-widget-title {
  margin-bottom: 29px;
}

.footer-blogPost-wrp .footer-blogPost-img a {
  min-width: 85px;
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.footer-blogPost-wrp .footer-blogPost-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: .4s;
}

.footer-blogPost-item:hover .footer-blogPost-img a img {
  transform: scale(1.1);
  transition: .4s;
}

.footer-blogPost-item:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .5s linear;
}

.footer-blogPost-post-title {
  margin-bottom: 5px;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

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

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

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

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

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

.footer-blogPost-date {
  color: var(--color-white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 7px;
}

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

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

a.footer-blogPost-btn {
  color: var(--color-secondary);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

a.footer-blogPost-btn:hover {
  color: var(--color-white);
}


/*
--------- PAGE LINK STYLE ------------
*/
.nobility-pageLink-item .footer-widget-title {
  margin-bottom: 17px;
}

.nobility-pageLink-item .footer-widget-title.after-border {
  margin-bottom: 40px;
}


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

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

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

.nobility-pageLink-item ul li a span {
  margin-right: 5px;
}

.nobility-pageLink-item ul li a:hover {
  color: var(--thm-color);
}

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

/*
--------- CONTACT WIDGET STYLE ------------
*/

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

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

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

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

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

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

/*
--------- CONTACT WIDGET STYLE ------------
*/
.company-about-logo {
  margin-bottom: 28px;
}

.company-about-dec {
  color: var(--color-white);
  text-transform: capitalize;
}

/*
--------- LOGIN AND REGISTER ICON WIDGET STYLE ------------
*/

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

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

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

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

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

/*
--------- SEARCH ICON WIDGET STYLE ------------
*/

.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 .6s ease, opacity .6s ease
}

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

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

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

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

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

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

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

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

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


/* ---------- IMAGE SLIDER WRAPPER ---------= */
.image-slider-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}

.image-slider-pagination {
  margin-top: 60px;
}

.image-slider-v1-arrow .button {
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.image-slider-v1-arrow {
  display: flex;
  gap: 40px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  justify-content: center;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20px;
}

.image-slider-wrapper {
  position: relative;
}


/* --------- HEADER V2 STYLE ----------- */
.tp-header.header-template-v2 .navbar {
  padding: 0;
}

.header-area .tp-header.header-template-v2 .menu-area .main-menu ul>li>a {
  padding: 44px 0px;
}

.header-v2-logo-inner {
  -webkit-mask-image: url(../image/logo.svg);
  mask-image: url(../image/logo.svg);
  padding: 58px 50px 78px;
  background: var(--color-secondary);
  background-position: center;
  -webkit-mask-position: bottom;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  position: relative;
  margin-top: -50px;
  margin-bottom: -20px;
}

.header-v2-logo-inner:after {
  content: "";
  position: absolute;
  background: var(--color-white);
  -webkit-mask-image: url(../image/logo2.svg);
  mask-image: url(../image/logo2.svg);
  /* padding: 69px 54px; */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  right: 0;
  margin: auto;
  background-position: center;
  -webkit-mask-position: top;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
}


.header-v2-top-area {
  padding: 14px 0;
  border-bottom: 1px solid #EEEFF0;
  position: relative;
}

.header-v2-top-area:before {
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  width: 52%;
  background: var(--thm-color);
  left: 0;
  top: 0;
  clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
}

.header-v2-top-open-time {
  text-align: end;
  color: var(--color-black);
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: normal;
}


.header-v2-top-text {
  text-align: center;
  margin-left: 252px;
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.header-v2-top-text a {
  color: var(--color-white);
}

.header-v2-top-text a:hover {
  color: var(--color-secondary);
}

.header-v2-call-us-area {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-v2-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 100px;
  color: var(--thm-color);
  border: 1px solid var(--thm-color);
  width: 55px;
  height: 55px;
}

.header-v2-call-title {
  color: var(--color-black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 3px;
}

.header-v2-call-number {
  color: var(--color-black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header-v2-button-area {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header-v2-botton .theme-button {
  background: var(--thm-color);
  color: var(--color-white);
}

.header-v2-botton .theme-button::before {
  background: var(--color-secondary);
}

.header-v2-logo-inner.normal {
  -webkit-mask-image: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

.header-template-v2 .navbar-collapse.nav-menu {
  text-align: left;
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky .menu-area {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  background-color: var(--color-white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: stickyAni 0.4s ease-in-out;
  animation: stickyAni 0.4s ease-in-out;
}

.sticky-wrapper.sticky .bg-transparent {
  background-color: var(--black-color) !important;
}

.sticky .header-v2-logo-inner:after {
  content: unset;
}

.sticky .header-v2-logo-inner {
  -webkit-mask-image: unset;
  mask-image: unset;
  padding: 0;
  background: unset;
  max-width: unset;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@media (min-width: 1400px) {
  .container.container-1500 {
    max-width: 1500px !important;
  }
}

@media (max-width: 1400px) {
  .header-v2-call-us-area {
    display: none;
  }

  .header-v2-top-text {
    display: none;
  }

  .menu-content-area {
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {

  .header-template-v2 .navbar-collapse.nav-menu {
    text-align: right !important;
  }
}

@media (max-width: 991px) {
  .header-v2-logo-inner {
    padding: 48px 30px 66px;
  }

  .header-area .tp-header.header-template-v2 .menu-area .tp-menu-toggle {
    margin-right: 0;
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .header-area .tp-header.header-template-v2 .menu-area {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-v2-logo-inner {
    -webkit-mask-image: none;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .header-v2-logo-inner:after {
    content: unset;
  }

  .header-v2-top-area:before {
    content: unset;
  }

  .header-v2-top-open-time {
    text-align: center;
  }

  .header-v2-top-text {
    margin: 0;
    color: var(--color-black);
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
  }

  .header-v2-top-text a {
    color: var(--color-black);
  }

  .header-area .tp-header.header-template-v2 .menu-area {
    padding: 10px 0;
  }
}

@media (max-width: 450px) {
  .header-v2-logo-inner {
    width: 150px;
  }
}


/* 
/* -------------------------- Project Details---------------------------- 
*/

.project-details-wrapper .container {
  padding: 0 10px;
}

.project-details-image {
  margin-bottom: 53px;
}

.project-details-wrapper .project-details-image img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.project-details-category ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.project-details-category ul li {
  display: inline;
  margin-left: 5px;
}

.project-details-category ul li:first-child {
  margin-left: 0px;
}

.project-details-category ul li a {
  font-weight: 500;
  margin-bottom: 10px;
}

.project-details-category ul li a:hover {
  color: var(--thm-color);
}

.project-details-title {
  font-weight: 500;
  margin: 0;
  font-size: 56px;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .project-details-title {
    font-size: 40px;
  }
}

/* --------------------------------------- */
/* ----------- EVENT V1 STYLE ----------- */

.event-v1-box {
  overflow: hidden;
  position: relative;
  transition: all .4s ease-in-out;
  height: 485px;
  margin-bottom: 25px;
}

.event-v1-wrapper .event-v1-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.event-v1-wrapper .event-v1-box:hover img {
  transform: scale(1.1);
}

.event-v1-box.tp-image:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .6s linear;
}

.event-v1-content {
  position: absolute;
  bottom: 35px;
  left: 0px;
  z-index: 1111;
  max-width: 90%;
}

.event-v1-title {
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  margin: 0;
  padding: 21px 30px 22px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-in-out;
}

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

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

ul.event-v1-cat {
  margin: 0;
  padding: 0;
}

ul.event-v1-cat li {
  list-style: none;
}

ul.event-v1-cat li a {
  color: var(--color-white);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 30px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-in-out;
}

.event-v1-cat li a::before,
.event-v1-title::before {
  position: absolute;
  content: "";
  background: var(--thm-color);
  height: 100%;
  width: 0;
  z-index: -1;
  transition: all .4s ease-in-out;
  left: 0;
  top: 0;
}

.event-v1-title::before {
  background: var(--color-white);
}

.event-v1-box:hover .event-v1-cat li a::before,
.event-v1-box:hover .event-v1-title::before {
  width: 100%;
}

.event-v1-box:hover .event-v1-cat li a,
.event-v1-box:hover .event-v1-title {
  opacity: 1;
  visibility: visible;
}

.event-v1-pagination {
  margin-top: 25px;
}


/* 
--------- EVENT V2 STYLE -----------
 */


.is-sticky {
  position: fixed;
}

.is-sunk {
  position: absolute;
  bottom: 0;
}

.is-sunk-wrapper {
  position: relative;
}

.event-v2-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 20px;
  background: var(--color-white);
  transition: .4s;

}

.event-v2-box:hover {
  box-shadow: 0px 9px 75px 0px rgba(2, 2, 2, 0.09);
}

.event-v2-box:last-child {
  margin-bottom: 0 !important;
}

.event-v2-box .event-v2-img {
  overflow: hidden;
  border-radius: 20px;
  width: 280px;
  height: 228px;
  flex-shrink: 0;
  position: relative;
}

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

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

.event-v2-box:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .4s linear;
}

.event-v2-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  border-bottom: 1px dashed #EFEFEF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

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

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

.event-v2-content {
  width: 100%;
}

.event-v2-date a {
  border-radius: 100px;
  border: 1px solid rgba(237, 237, 237, 0.89);
  background: var(--color-white);
  box-shadow: 0px 16px 51px 0px rgba(0, 0, 0, 0.07);
  display: inline-block;
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding: 6px 20px;
  margin-bottom: 21px;
}

.event-v2-date a:hover {
  background: var(--thm-color);
  color: var(--color-white);
}

.event-v2-author-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.event-v2-box .event-v2-author-img img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 100px;
  object-fit: cover;
}

.event-v2-author-name {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 144.444% */
}

.event-v2-author-designation {
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /* 185.714% */
}

.event-v2-media-control-bar {
  border-radius: 100px;
  background: var(--thm-color);
  display: inline-flex;
  padding: 10px 0px;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: max-content;
  z-index: 11;
}

.event-v2-media-control-bar li {
  list-style: none;
  line-height: 0;
  padding: 0px 18px;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.event-v2-media-control-bar li:last-child {
  border: none !important;
}

.event-v2-media-control-bar a {
  color: var(--color-white);
}


.event-v2-media-control-bar a:hover {
  color: var(--color-white);
}

.event-v2-media-control-bar button {
  background: transparent;
  color: var(--color-white);
  border: none;
  padding: 0;
  line-height: 0;
}

@media screen and (max-width: 600px) {
  .event-v2-box {
    flex-direction: column;
  }

  .event-v2-box .event-v2-img {
    width: 100%;
    min-height: 250px;
  }
}

/* --------- EVENT DETAILS STYLE ------- */
.tp-event-wrapper .container-fluid,
.tp-event-wrapper .container {
  padding: 0;
}

.event-details-wrapper .event-details-image img {
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
}

.event-details-meta {
  display: inline-flex;
  gap: 30px;
  margin-top: 35px;
  margin-bottom: 17px;
}

.event-details-meta a {
  display: inline-block;
  text-transform: capitalize;
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.event-details-meta i {
  color: #0B4253;
  margin-right: 8px;
}

.event-details-title {
  color: var(--color-black);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* --------- GALLERY WIDGET STYLE ------- */

.nobility-footer-gallery-wrp .footer-widget-title {
  color: var(--color-black);
  margin-bottom: 25px;
}

.nobility-footer-gallery-wrp .footer-widget-title.after-border {
  margin-bottom: 50px;
}

.nobility-footer-gallery-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 350px;
}

.nobility-footer-gallery-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.nobility-footer-gallery-wrp .nobility-footer-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.nobility-footer-gallery-thumb:before {
  content: "";
  height: calc(100% - 14px);
  width: calc(100% - 14px);
  background-color: var(--thm-color);
  opacity: 0.8;
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 10px;
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
}

.nobility-footer-gallery-thumb:hover:before {
  transform: scaleX(1);
}

.nobility-gallery-img-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-white);
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 20px);
}

.nobility-gallery-img-icon:hover {
  color: var(--color-white);
}

.nobility-footer-gallery-item .nobility-footer-gallery-thumb:hover .nobility-gallery-img-icon {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.nobility-footer-gallery-item .nobility-footer-gallery-thumb:hover .nobility-gallery-img-icon {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}



/* --------- EVENT INFO WIDGET STYLE ------- */


.event-info-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 14px;
}

.event-info-label,
.event-info-text {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.event-info-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #456E7B;
}

.event-info-item:last-child {
  border-bottom: 0 !important;
}

/* ---------- EVENT V3 STYLE --------- */

.event-v3-box {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  padding: 40px 40px 32px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0px 9px 75px 0px rgba(2, 2, 2, 0.09);
}

.event-v3-date {
  color: var(--color-body);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 16px 30px 17px;
  border-radius: 5px;
  border: 1px solid var(--thm-color);
  height: max-content;
  width: max-content;
  text-transform: uppercase;
  text-align: center;
}

.event-v3-date span {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
}

.event-v3-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 14px;
}

.event-v3-meta {
  color: var(--thm-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: inline-flex;
  gap: 15px;
  margin-bottom: 5px;
  line-height: normal;
  flex-wrap: wrap;
}

.event-v3-meta span {
  margin-right: 10px;
}

.event-v3-meta i {
  margin-right: 8px;
}

a.event-v3-btn {
  color: var(--thm-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
}

@media screen and (max-width: 500px) {
  .event-v3-box {
    flex-direction: column;
    padding: 40px 30px 32px;
  }
}

/* ----------- SERVIE V7 STYLE ------- */
.service-v7-section {
  position: relative;
}

.service-v7-content {
  padding: 30px;
  margin-bottom: 24px;
  transition: .4s;
  border: 1px solid rgb(239 239 239 / 30%);
  background: var(--color-white);
}

.service-v7-content:hover {
  box-shadow: 0px -16px 75px 0px rgba(2, 2, 2, 0.06);
}

.service-v7-image {
  height: 255px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.service-v7-content .service-v7-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: .4S;
}

.service-v7-content:hover .service-v7-image img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.service-v7-content:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .5s linear;
}

.service-v7-image span {
  width: 90px;
  height: 90px;
  color: var(--thm-color);
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #E2E5E7;
  background: rgba(255, 255, 255, 0.83);
  font-size: 40px;
  z-index: 11;
}

.service-v7-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 17px;
}

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

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

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

.service-v7-content .theme-button {
  color: var(--color-white);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  background: var(--color-black);
  border-radius: 0;
}

.service-v7-content .theme-button::before {
  background: var(--thm-color);
}

span.service-v7-stitle {
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.service-v7-arrow .button {
  width: 67px;
  height: 67px;
  flex-shrink: 0;
  background: var(--thm-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: var(--color-white);
  font-size: 17px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .4s;
}

.service-v7-arrow {
  display: flex;
  justify-content: space-between;
}

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

.service-v7-prev.button {
  left: -180px;
}

.service-v7-next.button {
  right: -180px;
}

@media screen and (max-width: 1599px) {
  .service-v7-prev.button {
    left: -130px;
  }

  .service-v7-next.button {
    right: -130px;
  }
}

@media screen and (max-width: 1499px) {
  .service-v7-prev.button {
    left: -80px;
  }

  .service-v7-next.button {
    right: -80px;
  }
}

@media screen and (max-width: 1399px) {
  .service-v7-prev.button {
    left: -30px;
  }

  .service-v7-next.button {
    right: -30px;
  }
}

@media screen and (max-width: 1299px) {
  .service-v7-prev.button {
    left: 0px;
  }

  .service-v7-next.button {
    right: 0px;
  }
}

@media screen and (max-width: 767px) {

  .service-v7-prev.button,
  .service-v7-next.button {
    display: none;
  }
}

/* --------- DONATED PROGRESSBAR STYLE ------- */

.donate-skillbar-item {
  margin-bottom: 0px;
  display: inline-block;
  width: 100%;
}

.donated-progressbar {
  height: 12px;
  position: relative;
  text-align: right;
  padding: 2px;
  border-radius: 100px;
  border: 1px solid rgba(240, 240, 240, 0.98);
  background: var(--color-white);
  box-shadow: 0px 10px 31px 0px rgba(169, 177, 193, 0.17);
}

.progressbar-count-wrap {
  position: absolute;
  right: 0;
  top: -30px;
}

.donated-progressbar .count-bar {
  overflow: visible !important;
  width: 0;
  height: 100%;
  position: relative;
  border-radius: 5px;
  background: var(--thm-color);
  box-shadow: 0px 10px 31px 0px rgba(169, 177, 193, 0.17);
}

.donated-progressbar .progress-slider {
  border-color: var(--thm-color);
  right: -10px;
  width: 20PX;
  height: 20px;
}

.progressbar-count-wrap,
.donated-progressbar-title {
  color: var(--color-black);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.progressbar-price-area {
  color: var(--color-black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 44px;
}

.donated-progressbar-btn .theme-button {
  border-radius: 100px;
  background: var(--thm-color);
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
}

.donated-progressbar-btn .theme-button::before {
  background: var(--w);
}

/* ----------- event v4 stytle --------- */

.event-v4-box {
  border: 1px solid rgba(239, 239, 239, 0.73);
  padding: 20px;
  margin-bottom: 24px;
  transition: .4s;
}

.event-v4-box:hover {
  border: 1px solid var(--thm-color);
}

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

.event-v4-box:hover .event-v4-img img {
  transform: scale(1.1);
}

.event-v4-box:hover .tp-image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all .5s linear;
}

.event-v4-img {
  height: 250px;
  overflow: hidden;
  margin-bottom: 28px;
}

.event-v4-title {
  color: var(--color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.event-v4-info-item {
  color: var(--color-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  padding: 0;
}

.event-v4-info-item li {
  list-style: none;
}

.event-v4-info-item li:last-child {
  margin-top: 32px;
}

/* ----------- newslatter style --------- */
.contact-form-wrapper .container {
  margin: 0;
  padding: 0 10px;
}

.nobility-input-area {
  position: relative;
}

.nobility-contact-from-newslatter input.wpcf7-form-control {
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0px 6px 26px 0px #EBEBEB;
  padding: 17px;
  margin-bottom: 0;
}

.nobility-contact-from-newslatter input::placeholder {
  color: var(--color-body);
}

.nobility-contact-from-newslatter input.theme-btns {
  border-radius: 20px;
  background: var(--thm-color);
  box-shadow: 0px 13px 21px 0px rgba(9, 61, 49, 0.09);
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 19px 35px;
  text-transform: capitalize;
}

.nobility-newslatter-btn.button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

/* ----------- Button style --------- */
.call-to-action-area {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.button-style-v2 {
  line-height: 0;
}

.button-style-v2 .theme-button {
  border: 0;
  margin: 0;
  background: var(--thm-color);
  color: var(--color-white);
  border-radius: 100px;
  text-transform: capitalize;
}

.button-style-v2 .theme-button::before {
  background: var(--color-black);
}

.button-style-v2 .theme-button i {
  transform: rotate(320deg);
  transition: .4s;
  margin-left: 4px;
}

.button-style-v2 .theme-button:hover i {
  transform: rotate(0deg);
  transition: .4s;

}

/* --------- SUBSCRIBE FORM ----- */

.email-subscription-form button.wpcf7-submit.submit-btn {
  position: absolute;
  right: 0;
  border: 0;
  height: 60px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  color: var(--color-white);
  background: var(--thm-color);
  bottom: 0;
  margin: auto;
  padding: 0;
}

.email-subscription-form {
  position: relative;
  max-width: 400px;
}

.email-subscription-form input {
  margin-bottom: 0;
  padding: 17px 25px;
}



/* --------- VIDEO BUTTON WIDGET STYLE ------- */

.video-icon-wrp .play-button-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: rgba(53, 53, 53, 0.14);
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 10px rgb(255 255 255 / 60%);
  transition: transform 0.4s cubic-bezier(0.42, 0, 0.58, 1), box-shadow 0.3s ease-in-out;
  /* Smooth transition */
  backdrop-filter: blur(2px);
}

.play-button-v2:hover {
  transform: scale(1.12);
  /* Slightly increased hover size */
  box-shadow: inset 0 0 10px rgb(255 255 255 / 80%);
}

.play-button-v2-icon {
  font-size: 30px;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

.play-button-v2:hover .play-button-v2-icon {
  transform: translateY(-4px);
}

.play-button-v2-text {
  margin: 0px;
  margin-top: 10px;
  color: var(--color-white);
  font-size: 14px;
  text-transform: uppercase;
  transition: opacity 0.3s ease-in-out;
  line-height: normal;
}

.play-button-v2:hover play-button-v2-text {
  opacity: 0.8;
  /* Slight fade effect on hover */
}

/* ---------- border title ---- */
.title-borders {
  --underline-position: bottom;
  --underline-size: 1px;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% var(--underline-size);
  display: inline;
  background-position: left 0 var(--underline-position);
  transition: .6s cubic-bezier(.25, .8, .25, 1), background-position 0s !important;
}

.title-borders:hover {
  color: var(--color-secondary);
  background-size: 0% var(--underline-size);
  background-position: right 0 var(--underline-position);
}

/* ---------  PROJECT V4 SYTLE ---------- */
.project-v4-item {
  position: relative;
}

.project-v4-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  background: var(--color-black);
  mix-blend-mode: multiply;
  z-index: 0;
  opacity: 0;
  transition: 0.4s;
}

.project-v4-item:hover:after {
  opacity: 0.5;
}

.project-v4-img.big-img {
  height: 600px;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}


.project-v4-img.flx-img {
  height: 288px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.project-v4-area .project-v4-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 380px;
  transform: scale(1);
  transition: 0.4s ease-in-out;
}

.project-v4-area .project-v4-img:hover img {
  transform: scale(1.1);
}

.porject-v4-content {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  transition: all 0.4s;
  opacity: 0;
  z-index: 11;
}

.project-v4-item:hover .porject-v4-content {
  opacity: 1;
  bottom: 0;
}

.porject-v4-content-box {
  margin: 45px 45px;
  height: -webkit-fill-available;
  border-radius: 15px;
  transition: .4s;
}

.project-v4-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

.flx-img .project-v4-title {
  font-size: 30px;
  margin-bottom: 0;
}

.project-v4-title a {
  color: var(--color-white);
}

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

.project-v4-title a.title-borders {
  --underline-size: 2px;
}

ul.project-v4-cat {
  margin: 0;
  padding: 0;
}

ul.project-v4-cat li {
  list-style: none;
}

ul.project-v4-cat li a {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

ul.project-v4-cat li a:hover {
  color: var(--thm-color);
}

@media screen and (max-width: 991px) {

  .project-v4-img.flx-img,
  .project-v4-img.big-img {
    height: auto;
  }

  .project-v4-title {
    font-size: 30px;
  }
}

/* ------ HEADER V3 STYLE START -------- */

.header-v3-call-us-area {
  display: flex;
  gap: 15px;
  align-items: center;
}


@media screen and (max-width: 1200px) {
  .navbar-collapse.nav-menu.heade-v3-nav-menu {
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .navbar-collapse.nav-menu.heade-v3-nav-menu {
    text-align: right;
  }
}

/* ------------ COUNTER IMAGE STYLE ---- */
.img-count-process {
  display: flex;
  gap: 20px;
  background: var(--thm-color);
  align-items: center;
  padding: 16px 30px 18px;
}

.counter-img-title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.counter-img-number {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}



/* ---------- DONATION FORM V2 STYLE ------- */

.donation-item-form.style-v2 form[id*=give-form] .give-donation-amount #give-amount {
  border: none;
  border-radius: 0;
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  ;
  text-transform: uppercase;
  padding: 15px 30px;
  height: 60px;
  margin: 0 8px;
  width: 98.5%;
}

.donation-item-form.style-v2 [id*=give-form].give-display-modal .give-btn {
  width: 100%;
}

.donation-item-form.style-v2 #give-donation-level-button-wrap>li {
  width: 100%;
}

.donation-item-form.style-v2 ul#give-donation-level-button-wrap {
  display: flex;
  margin-bottom: 5px;
  gap: 10px;

}

.donation-item-form.style-v2 button.give-btn.give-default-level {
  border: 1px solid var(--thm-color);
  background: var(--color-white);
  color: var(--thm-color);
}

.donation-item-form.style-v2 button.give-btn {
  background: var(--color-white);
  box-shadow: 0px 9px 75px 0px rgba(2, 2, 2, 0.09);
  color: var(--color-body);
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  text-transform: uppercase;
  padding: 16px 10px;
  border-radius: 0;
}

.donation-item-form.style-v2 button.give-btn.give-btn-modal {
  width: auto !important;
  color: var(--color-white);
  font-family: "Hanken Grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  background: var(--thm-color);
  padding: 15px 30px;
  margin-top: 19px;
}

.donation-item-form.style-v2 .give-goal-progress {
  margin-bottom: 0;
  display: none;
}

@media screen and (max-width: 1299px) {

  .donation-item-form.style-v2 form[id*=give-form] .give-donation-amount #give-amount,
  .donation-item-form.style-v2 button.give-btn {
    font-size: 16px;
  }

}

@media screen and (max-width: 767px) {
  .donation-item-form.style-v2 ul#give-donation-level-button-wrap {
    gap: 0;
    flex-wrap: wrap;
  }

  .donation-item-form.style-v2 form[id*=give-form] .give-donation-amount #give-amount {
    margin: 0;
    width: 100%;
  }
}

.tp-image {
  position: relative;
  transition: all .4s ease-in-out;
  overflow: hidden;
}

.tp-image::after {
  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);
}