/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap"); */
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #ffe361;
  --theme-2: #a6a182;
  --header: #000000;
  --base: #00813d;
  --text: #54595f;
  --text2: #bfbfbf;
  --border: #e6e6e6;
  --border2: #373737;
  --ratting: #f8bc26;
  --bg: #f8f8f8;
  --bg2: #0d0d0d;
  --color-gradient-1: linear-gradient(
    to left,
    #fd4a81,
    #ff5e73,
    #ff7269,
    #ff8662,
    #fc9860
  );
  ---color-gradient-2: linear-gradient(
    to left,
    #ff8662,
    #fc9860,
    #ff7269,
    #fd4a81,
    #ff5e73
  );
  ---box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
}

.theme-btn {
  background-color: var(--theme);
  color: var(--black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 40px;
  border-radius: 0;
  /* letter-spacing: 1.2px; */
  line-height: 1;
  /* text-transform: capitalize; */
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  border-radius: 50px;
}

/* .theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
  border-radius: 50px;
} */
/* .theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
  border-radius: 50px;
} */
.theme-btn i {
  margin-left: 5px;
}

.theme-btn:hover {
  color: var(--black);
  /* border-radius: 40px; */
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  width: 100%;
}

.theme-btn.bg-transparent {
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--header);
}

.theme-btn.bg-transparent::before {
  border-radius: 5px 5px 0 0;
  background-color: var(--theme);
}

.theme-btn.bg-transparent::after {
  border-radius: 0 0 5px 5px;
  background-color: var(--theme);
}

.theme-btn.bg-transparent:hover {
  color: var(--white);
}

.theme-btn.padding-style {
  padding: 18px 11px 20px;
  line-height: 12px;
}

@media (max-width: 767px) {
  .theme-btn.padding-style {
    padding: 18px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn.padding-style {
    padding: 16px 22px;
    font-size: 14px;
  }
}

.theme-btn.bg-white {
  background-color: var(--white);
  color: var(--header);
}

.theme-btn.bg-white::before,
.theme-btn.bg-white::after {
  background-color: var(--header);
}

.theme-btn.bg-white:hover {
  color: var(--white);
}

.theme-btn.radius-none {
  border-radius: 0;
}

.theme-btn.radius-none::before,
.theme-btn.radius-none::after {
  border-radius: 0;
}

.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
  background-color: var(--white);
}

.theme-btn.hover-white:hover {
  color: var(--header);
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 18px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 16px 30px;
    font-size: 14px;
  }
}

.link-btn {
  letter-spacing: 1.2px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
}

.link-btn i {
  margin-left: 5px;
}

.link-btn:hover {
  color: var(--theme);
}

.link-btn.white-btn {
  color: var(--white);
}

.link-btn.white-btn:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Plus Jakarta Sans", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--black);
  outline: none;
}

input {
  color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0;
  color: var(--header);
  /* text-transform: capitalize; */
  transition: all 0.4s ease-in-out;
}

h1 {
  /* font-size: 52px; */
  font-weight: 600;
  line-height: 118%;
  letter-spacing: -1.6px;
}

h2 {
  font-size: 47px;
  line-height: 55px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 38px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 133%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif, "Montserrat", sans-serif;
  text-align: center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}

.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;

  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 7px;
  /* margin-top: -6px; */
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title h6 {
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 18px;
}

/* .section-title h2 {
  text-transform: capitalize !important;
} */

.section-title span {
  text-transform: capitalize !important;
}

.section-title h3 {
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section-title br {
    display: none;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: #fff;
  /* background: linear-gradient(0deg, #F7F6E9 47.95%, #FFFFFF 119.86%); */
}

.section-bg-2 {
  background-color: var(--bg2);
}

.section-padding {
  /* padding: 157px 0; */
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 30px 0 !important;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes rounded-2 {
  50% {
    transform: rotate(5deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.animation__rotate {
  -webkit-animation: rotate 40s linear infinite;
  animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes top-image-bounce {
  0% {
    transform: translateX(-8px);
  }

  50% {
    transform: translateX(12px);
  }

  100% {
    transform: translateX(-8px);
  }
}

@keyframes top-image-bounce-2 {
  0% {
    transform: translatey(-8px);
  }

  50% {
    transform: translatey(12px);
  }

  100% {
    transform: translatey(-8px);
  }
}

@keyframes toggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-webkit-keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.header-top-section {
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}

.header-top-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  left: 60%;
  clip-path: polygon(2% 0%, 100% 0%, 100% 100%, 0 100%);
  z-index: -1;
}

@media (max-width: 1199px) {
  .header-top-section::before {
    left: 50%;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
}

.header-top-wrapper .contact-list li i {
  color: var(--theme);
  margin-right: 10px;
}

.header-top-wrapper .contact-list li a {
  color: var(--text);
}

.header-top-wrapper .contact-list li .link {
  color: var(--white);
}

.header-top-wrapper .top-right {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header-top-wrapper .top-right .social-icon {
  gap: 25px;
}

.header-top-wrapper .top-right .social-icon span {
  color: var(--white);
}

.header-top-wrapper .top-right .social-icon i {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.header-top-wrapper .top-right .social-icon i:hover {
  color: var(--theme);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 8px 0;  */
  /* gap: 259px; */
}

/* .header-1.sticky {
  padding: 8px 0;
} */

a.header-logo-2 img {
  width: 100px;
}

/* @media (max-width: 1199px) {
  .header-main {
    padding: 8px 15px 10px;
  }
} */

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 45px;
  padding: 18px 0;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  text-align: left;
  position: relative;
  /* text-transform: capitalize; */
  line-height: 12px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
  position: relative;
}

.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu
  .homemenu-thumb
  .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn {
  padding: 12px 15px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}

.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(99, 92, 92, 0)),
    to(#292930)
  );
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu
  .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu
  .homemenu-thumb:hover
  .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu
  .homemenu-thumb:hover
  .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.abc-gradient {
  /* background: linear-gradient(0deg, #F7F6E9 47.95%, #FFFFFF 119.86%); */
}

.header-1 {
  position: relative;
  z-index: 9;
  background: linear-gradient(0deg,  #ffffff -51.05%, #f7f6e9  119.86%);
}

.header-1 .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 148px;
}

.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 34px;
}

@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .header-right {
    gap: 20px;
  }
}

.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart {
  position: relative;
}

@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .menu-cart {
    display: none;
  }
}

.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box {
  background: var(--white) none repeat scroll 0 0;
  box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
  padding: 5px 20px 0px;
  position: absolute;
  left: -70px;
  top: 150%;
  transform: rotateX(90deg);
  transform-origin: center top 0;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  width: 340px;
  z-index: 9999;
}

@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-box {
    left: -260px;
  }
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  ul
  li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 15px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  ul
  li
  a {
  padding: 0;
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  ul
  li
  a::after {
  position: absolute;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  top: 15px;
  right: -88px;
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 30px;
  background-color: var(--theme);
  text-align: center;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  ul
  li
  span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  ul
  li
  img {
  width: 90px;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  .shopping-items {
  margin-top: 10px;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  .shopping-items
  span {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  text-transform: capitalize;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  .cart-button {
  margin-top: 20px;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-box
  .cart-button
  .theme-btn {
  padding: 16px 28px;
  font-size: 14px;
}

.header-1 .mega-menu-wrapper .header-main .header-right .menu-cart .cart-icon {
  position: relative;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background-color: var(--bg);
  display: inline-block;
  border-radius: 50%;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-icon::before {
  position: absolute;
  top: -7px;
  right: -8px;
  content: "1";
  width: 18px;
  line-height: 18px;
  height: 18px;
  border-radius: 18px;
  background-color: var(--theme);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart
  .cart-icon
  i {
  color: var(--header);
}

.header-1
  .mega-menu-wrapper
  .header-main
  .header-right
  .menu-cart:hover
  .cart-box {
  transform: rotateX(0deg);
  visibility: visible;
}

@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }
}

.header-1.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-1.header-2 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 1399px) {
  .header-1.header-2 .container-fluid {
    padding: 0 20px;
  }
}

.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li:hover a {
  color: var(--theme);
}

.header-1.header-2
  .mega-menu-wrapper
  .header-main
  .main-menu
  ul
  li
  .submenu
  li
  a {
  color: var(--header);
}

.header-1.header-2
  .mega-menu-wrapper
  .header-main
  .main-menu
  ul
  li
  .submenu
  li:hover
  a {
  color: var(--header);
}

.header-1.header-2 .mega-menu-wrapper .header-main .header-right {
  gap: 40px;
}

@media (max-width: 1399px) {
  .header-1.header-2
    .mega-menu-wrapper
    .header-main
    .header-right
    .header-button {
    display: none;
  }
}

.header-1.header-2 .mega-menu-wrapper .header-right {
  gap: 50px;
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .header-1.header-2 .mega-menu-wrapper .header-right .icon-items {
    display: none;
  }
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 5px;
  color: var(--white);
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}

.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content h4 a {
  color: var(--white);
}

.header-1.header-2 .mega-menu-wrapper .header-right .search-icon {
  color: var(--white);
  border-left: 1px solid var(--text);
  border-right: 1px solid var(--text);
  padding: 0 20px;
}

.header-3 {
  background-color: var(--bg);
  position: relative;
  z-index: 9;
}

.header-3 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 1399px) {
  .header-3 .container-fluid {
    padding: 0 20px;
  }
}

.header-3 .mega-menu-wrapper .header-main {
  padding: 0;
}

.header-3 .mega-menu-wrapper .header-main .header-right {
  gap: 40px;
}

@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }
}

.header-3 .mega-menu-wrapper .header-right {
  gap: 50px;
}

.header-3 .mega-menu-wrapper .header-right .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-right .icon-items {
    display: none;
  }
}

.header-3 .mega-menu-wrapper .header-right .icon-items .icon {
  color: var(--theme);
  font-size: 32px;
}

.header-3 .mega-menu-wrapper .header-right .icon-items .content p {
  color: var(--text);
  margin-bottom: 5px;
}

.header-3 .mega-menu-wrapper .header-right .icon-items .content h4 a {
  color: var(--text);
}

.header-3 .mega-menu-wrapper .header-right .search-icon {
  color: var(--white);
  padding: 30px;
  background-color: var(--theme);
}

.header-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--white);
  /* box-shadow: var(---box-shadow); */
}

@media (max-width: 1199px) {
  .header-4 {
    background-color: var(--white);
  }
}

.header-4 .mega-menu-wrapper .header-main {
  padding: 10px 40px;
  background-color: var(--white);
  /* box-shadow: var(---box-shadow); */
}

@media (max-width: 1199px) {
  .header-4 .mega-menu-wrapper .header-main {
    box-shadow: none;
    padding: 20px 0;
  }
}

.header-4 .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 90px;
}

.header-4 .mega-menu-wrapper .header-main .header-right {
  gap: 40px;
}

.header-4 .mega-menu-wrapper .header-main .header-right .search-icon {
  /* border-left: 1px solid var(--border); */
  /* border-right: 1px solid var(--border); */
  padding: 0 20px;
}

.header-5 {
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .header-5 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -350px;
  }
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--white);
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li:hover a {
  color: var(--theme);
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-5 .mega-menu-wrapper .header-main .main-menu ul li .submenu li:hover a {
  color: var(--header);
}

.header-5 .mega-menu-wrapper .header-main .header-right {
  gap: 20px;
}

.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: var(--bg2);
  color: var(--white);
}

.header-5 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: var(--bg2);
}

@media (max-width: 1199px) {
  .header-5 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
    display: block !important;
  }
}

.header-5
  .mega-menu-wrapper
  .header-main
  .header-right
  .header-button
  .theme-btn {
  border-radius: 0;
}

.header-5 .mega-menu-wrapper .header-main .header-right .header-button::before,
.header-5 .mega-menu-wrapper .header-main .header-right .header-button::after {
  border-radius: 0;
}

@media (max-width: 1399px) {
  .header-5 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }
}

.sidebar__toggle {
  cursor: pointer;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999999;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky.header-2 {
  background-color: #060606;
}

/* .sticky .header-main .main-menu ul li {
  padding: 20px 0;
} */

.sticky.header-4 .mega-menu-wrapper .header-main {
  box-shadow: none;
}

.sticky.header-5 {
  background-color: #060606;
}

.sticky.header-5
  .mega-menu-wrapper
  .header-main
  .main-menu
  ul
  li
  .has-homemenu {
  left: -450px;
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
  display: none;
}

.sticky.header-5
  .mega-menu-wrapper
  .header-main
  .header-right
  .sidebar__toggle {
  display: none;
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right .header-button {
  display: none;
}

.offcanvas__info {
  background: #f7f6e9;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon
  i {
  color: var(--theme);
}

.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  .header-button
  .theme-btn {
  width: 100%;
  padding: 16px 40px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  .social-icon
  a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.285) 0%,
    rgba(0, 0, 0, 0.47) 100%
  );
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  z-index: 9;
  margin-top: 55px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    margin-top: 35px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 68px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

.error-items .error-image {
  margin-bottom: 50px;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav > ul .homemenu {
  position: relative;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.mean-container
  .mean-nav
  > ul
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}

.mean-container
  .mean-nav
  > ul
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(99, 92, 92, 0)),
    to(#292930)
  );
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 0px 0 37px;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  position: relative;
  position: relative;
  padding: 215px 0 90px;
}

@media (max-width: 1199px) {
  .hero-1 {
    margin-bottom: -20px;
    padding: 160px 0 90px;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    margin-bottom: -40px;
    padding: 130px 0 90px;
  }
}

@media (max-width: 767px) {
  .hero-1 {
    margin-bottom: -50px;
    padding: 100px 0 90px;
  }
}

@media (max-width: 575px) {
  .hero-1 {
    padding: 70px 0 90px;
  }
}

.hero-1 .star-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3%;
}

.hero-1 .hero-image-2 {
  position: absolute;
  top: 55.5%;
  left: 17%;
}

@media (max-width: 1199px) {
  .hero-1 .hero-image-2 {
    left: 4%;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image-2 {
    top: 40%;
    left: 45%;
    max-width: 300px;
    z-index: 9;
  }

  .hero-1 .hero-image-2 img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-image-2 {
    top: 45%;
    left: 45%;
    max-width: 230px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-image-2 {
    top: 39.5%;
    left: 42%;
    max-width: 200px;
  }
}

.hero-1 .hero-image-2 img {
  border-radius: 5px;
}

.hero-1 .hero-image-2::before {
  content: "";
  width: 100%;
  height: 109%;
  position: absolute;
  right: 0px;
  right: -15px;
  top: -15px;
  border: 1px solid var(--theme);
  border-radius: 5px;
  z-index: -1;
}

.hero-1 .hero-image-2::after {
  position: absolute;
  right: -12%;
  top: -12%;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  content: "";
  background-color: var(--theme);
  z-index: 2;
}

.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 60%;
  z-index: -1;
}

.hero-1 .hero-content {
  position: relative;
  z-index: 9;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .hero-1 .hero-content {
    margin-bottom: 70px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content {
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content {
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
  }
}

.hero-1 .hero-content h1 {
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

.hero-1 .hero-content h1 span {
  margin-left: 80px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 span {
    margin-left: 0;
  }
}

.hero-1 .hero-content p {
  max-width: 300px;
  margin: 0 auto;
  text-align: right;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content p {
    text-align: left;
    max-width: initial;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content p {
    text-align: center;
  }
}

.hero-1 .hero-image {
  max-width: 660px;
  height: 750px;
  margin-left: -120px;
  position: relative;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-image {
    height: 400px;
  }
}

.hero-1 .hero-image::before {
  content: "";
  width: 100%;
  height: 104%;
  position: absolute;
  right: 0px;
  left: -20px;
  top: -15px;
  border: 1px solid var(--theme);
  border-radius: 5px;
  z-index: -1;
}

@media (max-width: 575px) {
  .hero-1 .hero-image::before {
    left: 0;
    height: 100%;
    top: 0;
  }
}

.hero-1 .hero-image .client-items {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: var(---box-shadow);
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.hero-1 .hero-image .client-items .client-content h3 {
  font-size: 28px;
  font-weight: 700;
}

.hero-2 {
  padding-top: 150px;
  padding-bottom: 110px;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .hero-2 {
    padding-top: 130px;
  }
}

@media (max-width: 575px) {
  .hero-2 {
    padding-top: 100px;
  }
}

.hero-2 .line {
  position: absolute;
  bottom: 20%;
  left: 5%;
  z-index: 2;
}

@media (max-width: 1600px) {
  .hero-2 .line {
    display: none;
  }
}

.hero-2 .star-shape {
  position: absolute;
  left: 3%;
  top: 20%;
}

.hero-2 .star-shape-2 {
  position: absolute;
  right: 10%;
  bottom: 20%;
}

.hero-2 .text {
  position: absolute;
  bottom: 12%;
  left: 72%;
  transform: translateX(-50%);
}

.hero-2 .text::before {
  position: absolute;
  top: 28px;
  left: -150px;
  content: "";
  width: 106px;
  height: 1px;
  background-color: var(--theme);
}

@media (max-width: 991px) {
  .hero-2 .text::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-2 .text {
    left: 50%;
    bottom: 7%;
    text-align: center;
  }
}

.hero-2 .text p {
  color: var(--white);
}

.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/hero/overlay-shape.jpg);
  width: 50%;
  z-index: -1;
}

.hero-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 100%;
  z-index: -1;
  left: 48%;
  background-color: var(--black);
  opacity: 0.7;
}

.hero-2 .hero-content {
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .hero-2 .hero-content {
    text-align: center;
    margin: 0 auto;
  }
}

.hero-2 .hero-content h1 {
  font-size: 100px;
  color: var(--theme);
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 90px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 62px;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 38px;
  }
}

.hero-2 .hero-content h1 span {
  font-weight: 300;
}

.hero-2 .hero-content p {
  color: rgba(255, 255, 255, 0.7019607843);
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .hero-2 .hero-content p {
    margin-bottom: 20px;
  }
}

.hero-2 .hero-content .social-icon {
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

@media (max-width: 575px) {
  .hero-2 .hero-content .social-icon {
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 75px;
  }
}

.hero-2 .hero-content .social-icon a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--text);
}

.hero-2 .hero-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.hero-3 {
  padding: 155px 0;
}

@media (max-width: 991px) {
  .hero-3 {
    padding-top: 130px;
  }
}

@media (max-width: 767px) {
  .hero-3 {
    padding-top: 100px;
  }
}

@media (max-width: 575px) {
  .hero-3 {
    padding-top: 80px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content {
    text-align: center;
    margin: 0 auto;
  }
}

.hero-3 .hero-content span {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}

.hero-3 .hero-content h1 {
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 32px;
  }
}

.hero-3 .hero-content p {
  color: var(--black);
}

.hero-3 .hero-content .hero-button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1199px) {
  .hero-3 .hero-content .hero-button {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 30px;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 25px;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero-3 .hero-content .hero-button .icon-items {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-3 .hero-content .hero-button .icon-items .icon {
  width: 55px;
  height: 55px;
  background-color: transparent;
  text-align: center;
  line-height: 45px;
  color: var(--theme);
  border: 5px solid rgba(166, 161, 130, 0.28);
  border-radius: 50%;
}

.hero-3 .hero-content .hero-button .icon-items .content {
  text-align: left !important;
}

.hero-3 .hero-content .hero-button .icon-items .content p {
  font-weight: 500;
  color: var(--black);
  margin-bottom: 5px;
}

.hero-3 .hero-slider-items {
  margin-right: -90%;
  transform: rotate(-45deg);
}

@media (max-width: 1199px) {
  .hero-3 .hero-slider-items {
    transform: rotate(0);
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-slider-items {
    margin-right: 0;
  }
}

.hero-3 .hero-slider-items .hero-image {
  max-width: 410px;
}

.hero-3 .hero-slider-items .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .hero-3 .hero-slider-items .hero-image {
    max-width: 590px;
    height: 500px;
  }

  .header-main {
    gap: 0;
  }

  .search-trigger.search-icon.d-xs-none {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-slider-items .hero-image {
    max-width: 450px;
    height: 420px;
  }
}

.hero-4 {
  position: relative;
  z-index: 9;
  /* background: linear-gradient(0deg, #F7F6E9 47.95%, #FFFFFF 119.86%); */
}

.hero-4 .hero-content {
  /* margin-top: 40px; */
  /* margin-bottom: 90px; */
  padding: 10px 36px 25px 0;
  /* background-color: var(--white); */
  position: relative;
  /* z-index: 9; */
  width: 100%;
  max-width: 789px;
}

@media (max-width: 991px) {
  .hero-4 .hero-content {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content {
    padding: 10px 0px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content {
    padding: 0 0px 5px;
    text-align: left;
  }
}

/* .hero-4 .hero-content::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  content: "";
  background-color: var(--theme);
  opacity: 0.4;
} */
.hero-4 .hero-content span {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block;
}

.hero-4 .hero-content h1 {
  margin-bottom: 10px;
  font-size: 47px;
}

@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 38px;
  }
}

.hero-4 .hero-content p {
  /* margin-bottom: 15px; */
  font-size: 16px;
  color: #000;
  opacity: 60%;
  line-height: 26px;
  letter-spacing: 0;
}

.theme-btn.padding-style.wow.fadeInUp.bg-black {
  color: #ffe361;
  height: 60px;
  width: 210px;
  text-align: center;
  padding: 22px 30px 24px 30px;
  line-height: 14px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .hero-4 .hero-content p {
    margin-bottom: 30px;
    /* width: 82%; */
    font-size: 13.7px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content p {
    margin-bottom: 20px;
  }
}

.hero-4 .hero-image {
  width: 1050px;
  height: 650px;
  border-radius: 5px;
  margin-left: -80px;
  position: relative;
}

@media (max-width: 991px) {
  .hero-4 .hero-image {
    width: initial;
    max-width: 1050px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-image {
    height: 430px;
  }
}

.hero-4 .hero-image::before {
  position: absolute;
  bottom: -7%;
  right: 0;
  width: 800px;
  height: 90px;
  content: "";
  background-color: var(--theme);
  z-index: -1;
}

@media (max-width: 1199px) {
  .hero-4 .hero-image::before {
    display: none;
  }
}

.hero-5 {
  overflow: hidden;
  margin-top: 120px;
}

.hero-5 .hero-wrapper {
  margin-left: -350px;
  margin-right: -350px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .hero-5 .hero-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-5 .hero-wrapper .hero-items {
  overflow: hidden;
}

.hero-5 .hero-wrapper .hero-items .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-5 .hero-wrapper .hero-items .hero-content {
  padding: 60px 80px;
  background-color: var(--bg2);
  max-width: 1070px;
  margin: 0 auto;
  margin-top: -110px;
  position: relative;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-left: 4px solid var(--theme);
}

@media (max-width: 1199px) {
  .hero-5 .hero-wrapper .hero-items .hero-content {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-wrapper .hero-items .hero-content {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .hero-5 .hero-wrapper .hero-items .hero-content {
    padding: 40px 30px;
  }
}

.hero-5 .hero-wrapper .hero-items .hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .hero-5 .hero-wrapper .hero-items .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .hero-5 .hero-wrapper .hero-items .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .hero-5 .hero-wrapper .hero-items .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-wrapper .hero-items .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .hero-5 .hero-wrapper .hero-items .hero-content h1 {
    font-size: 32px;
  }
}

.hero-5 .hero-wrapper .hero-items .hero-content h1 span {
  font-weight: 300;
}

.hero-5 .hero-wrapper .hero-items .hero-content p {
  color: var(--white);
}

.hero-5
  .hero-wrapper
  .swiper-slide.swiper-slide-active
  .hero-items
  .hero-content {
  visibility: visible;
  opacity: 1;
}

.work-process-items {
  margin-top: 30px;
  padding: 40px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  position: relative;
  z-index: 9;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .work-process-items {
    padding: 30px;
  }
}

.work-process-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/process-bg.jpg);
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.work-process-items::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  z-index: -1;
  opacity: 0.7;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.work-process-items h6 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--black);
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 48px;
  opacity: 0.2;
  margin-bottom: 40px;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .work-process-items h6 {
    margin-bottom: 20px;
  }
}

.work-process-items h3 {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 20px;
}

.work-process-items .icon {
  margin-top: 25px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
  font-size: 48px;
  color: var(--black);
}

@media (max-width: 575px) {
  .work-process-items .icon {
    margin-top: 15px;
  }
}

.work-process-items:hover h6 {
  -webkit-text-stroke-color: var(--white);
  opacity: 1;
}

.work-process-items:hover h3 {
  border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}

.work-process-items:hover h3,
.work-process-items:hover p {
  color: var(--white);
}

.work-process-items:hover .icon {
  color: var(--white);
}

.work-process-items:hover::before,
.work-process-items:hover::after {
  opacity: 0.7;
  visibility: visible;
}

.work-process-items.active h6 {
  -webkit-text-stroke-color: var(--white);
  opacity: 1;
}

.work-process-items.active h3 {
  border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}

.work-process-items.active h3,
.work-process-items.active p {
  color: var(--white);
}

.work-process-items.active .icon {
  color: var(--white);
}

.work-process-items.active::before,
.work-process-items.active::after {
  opacity: 0.7;
  visibility: visible;
}

.achievement-section {
  position: relative;
}

.achievement-section .shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}

.achievement-wrapper {
  position: relative;
  z-index: 9;
}

.achievement-wrapper .achievement-content .about-button {
  margin-top: 40px;
}

.achievement-wrapper .counter-area {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .achievement-wrapper .counter-area {
    margin-left: 0;
  }
}

.achievement-wrapper .counter-area .counter-item {
  background-color: var(--white);
  text-align: center;
  padding: 30px;
}

.achievement-wrapper .counter-area .counter-item .icon {
  color: var(--theme);
  font-size: 48px;
}

.achievement-wrapper .counter-area .counter-item .content {
  margin-top: 20px;
}

.achievement-wrapper .counter-area .counter-item .content h2 {
  font-size: 48px;
  color: var(--header);
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .achievement-wrapper .counter-area .counter-item .content h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .achievement-wrapper .counter-area .counter-item .content h2 {
    font-size: 32px;
  }
}

.cta-video-wrapper {
  padding: 78px 80px 0px;
  /* margin: 0 53px 0 59px; */
  position: relative;
  border-radius: 30px;
  /* height: 628px; */
}

/* @media (max-width: 1399px) {
  .cta-video-wrapper {
    padding: 210px 0;
  }
} */
/* @media (max-width: 1199px) {
  .cta-video-wrapper {
    margin: 0;
    padding: 190px 0;
  }
} */
@media (max-width: 991px) {
  .cta-video-wrapper {
    padding: 150px 0;
  }
}

@media (max-width: 767px) {
  .cta-video-wrapper {
    padding: 100px 0;
  }
}

@media (max-width: 575px) {
  .cta-video-wrapper {
    padding: 80px 0;
  }
}

/* .cta-video-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
} */
.cta-video-wrapper .video-box {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 9;
}

.cta-video-wrapper .video-box .video-btn {
  width: 115px;
  height: 115px;
  line-height: 115px;
  text-align: center;
  background-color: var(--theme);
  display: inline-block;
  border-radius: 50%;
  font-size: 28px;
  color: var(--white);
}

@media (max-width: 767px) {
  .cta-video-wrapper .video-box .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .cta-video-wrapper .video-box .video-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .cta-video-wrapper .video-box .ripple::before,
  .cta-video-wrapper .video-box .ripple::after {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .cta-video-wrapper .video-box .ripple::before,
  .cta-video-wrapper .video-box .ripple::after {
    width: 70px;
    height: 70px;
  }
}

.work-process-wrapper .section-title h2 {
  font-size: 68px;
}

@media (max-width: 1399px) {
  .work-process-wrapper .section-title h2 {
    font-size: 62px;
  }
}

@media (max-width: 1199px) {
  .work-process-wrapper .section-title h2 {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .work-process-wrapper .section-title h2 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .work-process-wrapper .section-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .work-process-wrapper .section-title h2 {
    font-size: 32px;
  }
}

.work-process-wrapper .section-title h2 span {
  font-size: 68px;
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1399px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 62px;
  }
}

@media (max-width: 1199px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 32px;
  }
}

.work-process-wrapper .work-process-items-2 {
  margin-top: 30px;
}

.work-process-wrapper .work-process-items-2 .work-process-content {
  position: relative;
}

.work-process-wrapper .work-process-items-2 .work-process-content h3 {
  color: var(--white);
  border-bottom: 1px solid var(--text);
  padding-bottom: 30px;
}

.work-process-wrapper .work-process-items-2 .work-process-content .number {
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  font-size: 68px;
  opacity: 0.2;
  position: absolute;
  top: -30px;
  right: 0;
}

@media (max-width: 575px) {
  .work-process-wrapper .work-process-items-2 .work-process-content .number {
    font-size: 48px;
    top: -20px;
  }
}

.work-process-wrapper .work-process-items-2 .work-process-content p {
  padding-top: 30px;
  color: var(--white);
}

@media (max-width: 575px) {
  .work-process-wrapper .work-process-items-2 .work-process-content p {
    padding-top: 20px;
  }
}

.work-process-wrapper.style-2 .section-title h2 {
  color: var(--header) !important;
}

.work-process-wrapper.style-2 .work-process-items-2 {
  margin-top: 30px;
}

.work-process-wrapper.style-2 .work-process-items-2 .work-process-content {
  position: relative;
}

.work-process-wrapper.style-2 .work-process-items-2 .work-process-content h3 {
  color: var(--header);
}

.work-process-wrapper.style-2
  .work-process-items-2
  .work-process-content
  .number {
  -webkit-text-stroke-color: var(--black);
}

.work-process-wrapper.style-2 .work-process-items-2 .work-process-content p {
  color: var(--text);
}

.counter-wrapper {
  margin-top: -30px;
}

@media (max-width: 1199px) {
  .counter-wrapper {
    margin-top: -80px;
  }
}

@media (max-width: 991px) {
  .counter-wrapper {
    margin-top: -100px;
  }
}

.counter-wrapper .counter-box-items {
  padding: 30px 20px;
  text-align: center;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}

@media (max-width: 575px) {
  .counter-wrapper .counter-box-items {
    padding: 20px;
  }
}

.counter-items {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 767px) {
  .counter-items {
    display: inline;
    text-align: center;
    margin: 0 auto;
  }
}

.counter-items .icon {
  width: 80px;
  line-height: 90px;
  height: 80px;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
}

@media (max-width: 767px) {
  .counter-items .icon {
    text-align: center;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    line-height: 80px;
  }
}

@media (max-width: 575px) {
  .counter-items .icon {
    width: 60px;
    height: 60px;
    line-height: 75px;
  }
}

.counter-items .content {
  border-left: 1px solid var(--black);
  padding-left: 20px;
}

@media (max-width: 767px) {
  .counter-items .content {
    padding-left: 0;
    margin-top: 30px;
    border: none;
  }
}

.counter-items .content p {
  color: var(--black);
}

.counter-wrapper-2 {
  padding: 60px 50px;
}

.counter-wrapper-2 .counter-items-2 {
  display: flex;
  align-items: center;
  gap: 40px;
}

.counter-wrapper-2 .counter-items-2 .icon {
  font-size: 60px;
  color: var(--theme);
}

.counter-wrapper-2 .counter-items-2 .content {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 25px;
}

.counter-wrapper-2 .counter-items-2 .content h2 {
  color: var(--white);
  margin-bottom: 5px;
}

.counter-wrapper-2 .counter-items-2 .content p {
  color: var(--white);
}

.about-wrapper {
  margin-top: 45px;
}

.about-wrapper .about-left-items {
  position: relative;
}

.about-wrapper .about-left-items .dot-shape {
  position: absolute;
  bottom: 55px;
  right: 20px;
}

.about-wrapper .about-left-items .about-counter-items {
  background-color: var(--theme);
  padding: 50px 45px;
  border-radius: 5px;
  height: 100%;
}

@media (max-width: 575px) {
  .about-wrapper .about-left-items .about-counter-items {
    padding: 30px;
    text-align: center;
  }
}

.about-wrapper .about-left-items .about-counter-items h2 {
  color: var(--white);
}

.about-wrapper .about-left-items .about-counter-items h5 {
  color: var(--white);
  margin-top: 15px;
}

.about-wrapper .about-left-items .about-image-1 img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.about-wrapper .about-left-items .about-image-2 {
  max-width: 480px;
  height: 300px;
  border-radius: 5px;
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper .about-left-items .about-image-2 {
    max-width: 800px;
  }
}

.about-wrapper .about-left-items .about-image-2 .client-items {
  padding: 12px 20px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 40px;
  right: -90px;
  border-radius: 5px;
}

.about-wrapper .about-left-items .about-image-2 .client-items .clinet-img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .about-wrapper .about-left-items .about-image-2 .client-items {
    right: -30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-left-items .about-image-2 .client-items {
    right: 0;
  }
}

.about-wrapper .about-content {
  margin-left: 40px;
}

@media (max-width: 991px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-content br {
    display: none;
  }
}

.about-wrapper .about-content .about-button {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .about-wrapper .about-content .about-button {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-button {
    margin-top: 20px;
  }
}

.about-wrapper .about-content.style-3 .icon-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 575px) {
  .about-wrapper .about-content.style-3 .icon-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper .about-content.style-3 .icon-items .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: var(--bg2);
  text-align: center;
}

.about-wrapper .about-content.style-3 .icon-items .content h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.about-wrapper .about-content.style-3 .icon-items .content p {
  color: var(--white);
}

.about-wrapper .about-image-2 img {
  width: 100%;
  height: 100%;
}

.about-wrapper-2 {
  position: relative;
  z-index: 9;
}

.about-wrapper-2 .about-content p {
  color: rgba(255, 255, 255, 0.7019607843);
}

.about-wrapper-2 .about-content .progress-wrap {
  margin-top: 30px;
  margin-bottom: 55px;
}

.about-wrapper-2 .about-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}

.about-wrapper-2 .about-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.about-wrapper-2 .about-content .progress-wrap .pro-items .pro-head .title {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2.4px;
}

.about-wrapper-2 .about-content .progress-wrap .pro-items .pro-head .point {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2.4px;
}

.about-wrapper-2 .about-content .progress-wrap .pro-items .progress {
  background: var(--bg);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
  border-radius: 0;
}

.about-wrapper-2 .about-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
  border-radius: 0;
}

.about-wrapper-2 .about-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 75%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.about-wrapper-2 .about-image {
  max-width: 510px;
  height: 539px;
  border-radius: 5px;
  margin-left: 100px;
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    margin-left: 55px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-image {
    margin-left: 0;
    max-width: 730px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-image {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-image {
    height: 450px;
  }
}

.about-wrapper-2 .about-image::before {
  position: absolute;
  top: 20%;
  right: -10px;
  content: "";
  height: 440px;
  width: 411px;
  background-color: var(--theme);
  z-index: -1;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-image::before {
    display: none;
  }
}

.about-wrapper-2 .about-image .counter-shape {
  position: absolute;
  bottom: 40px;
  left: -14%;
  padding: 25px;
  background-color: var(--bg2);
  display: inline-block;
  color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 5px;
  border: 1px solid var(--theme);
}

.about-wrapper-2 .about-image .counter-shape h3 {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7019607843);
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-image .counter-shape {
    left: 0;
    bottom: 0;
  }
}

.about-wrapper-2 .about-image .line-shape {
  position: absolute;
  bottom: 30%;
  left: -7%;
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-image .line-shape {
    left: 40px;
    bottom: 123px;
  }
}

.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
}

/* .about-wrapper-3 .about-content {
  margin-left: 40px;
} */
@media (max-width: 1399px) {
  /* .about-wrapper-3 .about-content {
    margin-left: 15px;
  } */

  .about-wrapper-3 .about-content br {
    /* display: none; */
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}

.about-wrapper-3 .about-content .about-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 767px) {
  .about-wrapper-3 .about-content br {
    display: block;
  }

  .about-wrapper-3 .about-content .about-list {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-list {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

.about-wrapper-3 .about-content .about-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-3 .about-content .about-list ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.about-wrapper-3.style-2 .about-image-items .about-image-1 {
  max-width: 490px;
  height: 465px;
  border-radius: 5px;
  margin-left: 100px;
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 {
    height: 450px;
    max-width: 550px;
  }
}

.about-wrapper-3.style-2 .about-image-items .about-image-1::before {
  position: absolute;
  top: 0;
  left: -30px;
  content: "";
  height: 100%;
  width: 15px;
  border-radius: 5px;
  background-color: var(--theme);
}

.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
  position: absolute;
  bottom: -65px;
  left: -100px;
  max-width: 300px;
}

@media (max-width: 991px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    max-width: 200px;
  }
}

.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

/* .about-wrapper-3.style-2 .about-content {
  margin-left: 20px;
} */
.about-wrapper-3.style-2 .about-content .progress-wrap {
  margin-bottom: 55px;
  margin-top: 30px;
}

.about-wrapper-3.style-2
  .about-content
  .progress-wrap
  .pro-items:not(:last-child) {
  margin-bottom: 30px;
}

.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.about-wrapper-3.style-2
  .about-content
  .progress-wrap
  .pro-items
  .pro-head
  .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.about-wrapper-3.style-2
  .about-content
  .progress-wrap
  .pro-items
  .pro-head
  .point {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme);
}

.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .progress {
  background: var(--white);
  justify-content: flex-start;
  border-radius: 5px;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
  border-radius: 5px;
}

.about-wrapper-3.style-2
  .about-content
  .progress-wrap
  .pro-items
  .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 6px;
  width: 0;
  border-radius: 5px;
}

.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 85%;
  }
}

.service-section {
  position: relative;
}

.service-section .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.service-section .bg-shape img {
  width: 100%;
  height: 100%;
}

.service-items {
  position: relative;
  z-index: 9;
  padding: 30px;
}

@media (max-width: 991px) {
  .service-items {
    margin-top: 0 !important;
  }
}

.service-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  border-radius: 5px;
  z-index: -1;
  height: initial;
  top: 23%;
}

.service-items .icon {
  width: 65px;
  height: 65px;
  line-height: 75px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 40px;
  color: var(--white);
}

.service-items .content {
  margin-top: 20px;
}

.service-items .content h3 {
  margin-bottom: 10px;
}

.service-items .content h3 a:hover {
  color: var(--theme);
}

.service-items .content p {
  margin-bottom: 20px;
}

.service-items.style-2 {
  margin-top: -30px !important;
}

.service-items.style-2::before {
  background-color: var(--bg);
}

.service-wrapper .service-image {
  max-width: 615px;
  height: 740px;
  margin-right: -100%;
  margin-top: -120px;
  margin-bottom: -120px;
}

@media (max-width: 1199px) {
  .service-wrapper .service-image {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .service-wrapper .service-image {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .service-wrapper .service-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .service-wrapper .service-image {
    height: 430px;
  }
}

.service-box-items {
  /* margin-top: 30px; */
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  opacity: 90% !important;
  text-align: center;
}

@media (max-width: 575px) {
  .service-box-items {
    padding: 30px 25px;
  }
}

.service-box-items .icon {
  font-size: 55px;
  color: var(--theme);
}

/* .service-box-items .content {
  margin-top: 30px;
} */
@media (max-width: 575px) {
  .service-box-items .content {
    margin-top: 20px;
  }
}

.service-box-items .content h3 {
  margin-bottom: 15px;
}

.service-box-items .content h3 a {
  color: var(--white);
}

.service-box-items .content h3 a:hover {
  color: var(--theme);
}

.service-box-items .content p {
  color: #232328;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  /* opacity: 60%; */
}

.service-box-items.style-2 img {
  width: 491px;
}

.service-box-items .content ul {
  margin-top: 20px;
}

.service-box-items .content ul li {
  color: rgba(255, 255, 255, 0.7019607843);
}

.service-box-items .content ul li i {
  color: var(--text);
  margin-right: 5px;
}

.service-box-items .content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.service-box-items .content .link-btn {
  color: var(--white);
  margin-top: 30px;
}

.service-box-items .content .link-btn i {
  color: var(--theme);
}

.service-box-items .content .link-btn:hover {
  color: var(--theme);
}

.service-box-items.style-2 {
  padding: 20px 20px 0;
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .service-box-items.style-2 {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .service-box-items.style-2 {
    padding: 25px 20px;
  }
}

.service-box-items.style-2 .icon {
  font-size: 45px;
}

.service-box-items.style-2 .content h4 {
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .service-box-items.style-2 .content h4 {
    margin-bottom: 15px;
  }
}

.service-box-items.style-2 .content h4 a {
  color: #000000;
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: -1.5px;
}

/* .service-box-items.style-2 .content h4 a:hover {
  color: var(--theme);
} */
.service-box-items.style-2 .content .link-btn {
  margin-top: 20px;
  color: var(--theme);
}

@media (max-width: 575px) {
  .service-box-items.style-2 .content .link-btn {
    margin-top: 15px;
  }
}

.service-box-items.style-2:hover {
  /* border: 1px solid var(--theme); */
}

.service-box-items.style-2.active {
  border: 1px solid var(--theme);
}

.service-box-items.style-3 {
  background-color: transparent;
  border: 1px solid var(--bg2);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}

.service-box-items.style-3 .icon {
  color: var(--theme);
  font-size: 48px;
}

.service-box-items.style-3 .content h3 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 0;
}

.service-box-items.style-3 .content p {
  color: var(--white);
  padding-top: 20px;
}

.service-box-items.style-3:hover {
  background-color: var(--bg2);
  border-bottom: 3px solid var(--theme);
}

.service-box-items.style-3.active {
  background-color: var(--bg2);
  border-bottom: 3px solid var(--theme);
}

@media (max-width: 1399px) {
  .service-section-2 .section-title-area {
    flex-wrap: wrap;
  }
}

.service-section-3 {
  position: relative;
}

.service-section-3 .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.service-section-3 .bg-shape img {
  width: 100%;
  height: 100%;
}

.service-box-items-2 {
  margin-top: 30px;
  padding: 40px;
  background-color: var(--bg2);
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .service-box-items-2 {
    padding: 30px 35px;
  }
}

@media (max-width: 767px) {
  .service-box-items-2 {
    padding: 25px 20px;
  }
}

.service-box-items-2 .icon {
  color: var(--theme);
  font-size: 45px;
}

.service-box-items-2 .content {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .service-box-items-2 .content {
    margin-top: 20px;
  }
}

.service-box-items-2 .content h3 a {
  color: var(--white);
}

.service-box-items-2 .content h3 a:hover {
  color: var(--theme);
}

.service-box-items-2 .content p {
  color: var(--white);
  margin-top: 15px;
}

@media (max-width: 575px) {
  .service-box-items-2 .content p {
    margin-top: 10px;
  }
}

.service-wrapper-2 .main-service-items .theme-btn {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.service-wrapper-2 .main-service-items:hover .theme-btn {
  opacity: 1;
  visibility: visible;
}

.service-wrapper-2 .theme-btn {
  width: 100%;
  text-align: center;
}

.service-details-wrapper .service-details-items .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.service-details-wrapper .service-details-items .details-content {
  margin-top: 30px;
}

.service-details-wrapper .service-details-items .details-content h3 {
  font-size: 28px;
}

.service-details-wrapper .service-details-items .details-content .list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.service-details-wrapper .service-details-items .details-content .list li {
  position: relative;
  padding-left: 25px;
}

.service-details-wrapper
  .service-details-items
  .details-content
  .list
  li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  content: "";
  background-color: var(--theme);
}

.service-details-wrapper
  .service-details-items
  .details-content
  .list
  li:not(:last-child) {
  margin-bottom: 10px;
}

.service-details-wrapper .service-details-items .details-content h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.service-details-wrapper .service-details-items .details-content .list-items {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service-details-wrapper
  .service-details-items
  .details-content
  .list-items
  .d-list
  li
  i {
  color: var(--theme);
  margin-right: 5px;
}

.service-details-wrapper
  .service-details-items
  .details-content
  .list-items
  .d-list
  li:not(:last-child) {
  margin-bottom: 15px;
}

.service-details-wrapper
  .service-details-items
  .details-content
  .list-items
  .icon-box {
  padding: 30px 30px;
  text-align: center;
  background-color: var(--bg);
}

.service-details-wrapper
  .service-details-items
  .details-content
  .list-items
  .icon-box
  i {
  font-size: 40px;
  color: var(--theme);
  margin-bottom: 20px;
}

.service-details-wrapper
  .service-details-items
  .details-content
  .list-items
  .icon-box
  h4 {
  margin-bottom: 5px;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget {
  margin-bottom: 40px;
}

.service-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .widget-categories
  ul
  li {
  padding: 18px 30px;
  background-color: var(--bg);
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .service-details-wrapper
    .main-sidebar
    .single-sidebar-widget
    .widget-categories
    ul
    li {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .service-details-wrapper
    .main-sidebar
    .single-sidebar-widget
    .widget-categories
    ul
    li {
    font-size: 18px;
  }
}

.service-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .widget-categories
  ul
  li
  i {
  font-size: 22px;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.service-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .widget-categories
  ul
  li:not(:last-child) {
  margin-bottom: 20px;
}

.service-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .widget-categories
  ul
  li:hover {
  background-color: var(--theme);
  color: var(--white);
}

.service-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .widget-categories
  ul
  li:hover
  i {
  color: var(--white);
}

.service-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .widget-categories
  ul
  li:hover
  a {
  color: var(--white);
}

.service-details-wrapper .main-sidebar .bg-image {
  max-width: 500px;
  position: relative;
}

@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .bg-image {
    max-width: 800px;
  }
}

.service-details-wrapper .main-sidebar .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.7;
  border-radius: 5px;
}

.service-details-wrapper .main-sidebar .bg-image .contact-text {
  position: relative;
  text-align: center;
  padding: 40px 35px;
  margin: 0 auto;
}

.service-details-wrapper .main-sidebar .bg-image .contact-text .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}

.service-details-wrapper .main-sidebar .bg-image .contact-text p {
  color: var(--white);
}

.service-details-wrapper .main-sidebar .bg-image .contact-text h3 {
  margin-top: 15px;
}

.service-details-wrapper .main-sidebar .bg-image .contact-text h3 a {
  color: var(--white);
}

.service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
    font-size: 16px;
    padding: 22px 20px;
  }
}

@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
    font-size: 18px;
  }
}

.service-details-wrapper
  .main-sidebar
  .download-service-doc
  .theme-btn.style-2 {
  text-align: left;
  background-color: var(--bg);
  color: var(--header);
}

.service-details-wrapper
  .main-sidebar
  .download-service-doc
  .theme-btn.style-2
  i {
  font-size: 24px;
  margin-right: 15px;
}

@media (max-width: 1199px) {
  .service-details-wrapper
    .main-sidebar
    .download-service-doc
    .theme-btn.style-2
    i {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .service-details-wrapper
    .main-sidebar
    .download-service-doc
    .theme-btn.style-2
    i {
    font-size: 18px;
  }
}

.service-details-wrapper
  .main-sidebar
  .download-service-doc
  .theme-btn.style-2::before,
.service-details-wrapper
  .main-sidebar
  .download-service-doc
  .theme-btn.style-2::after {
  background-color: var(--theme);
}

.service-details-wrapper
  .main-sidebar
  .download-service-doc
  .theme-btn.style-2:hover {
  color: var(--white);
}

.project-carousel-items {
  margin-top: 30px;
  overflow: hidden;
}

.project-carousel-items .project-image {
  position: relative;
}

@media (max-width: 767px) {
  .project-carousel-items .project-image {
    height: 550px;
  }
}

@media (max-width: 575px) {
  .project-carousel-items .project-image {
    height: 450px;
  }
}

.project-carousel-items .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.project-carousel-items .project-image .project-content {
  position: absolute;
  bottom: -150px;
  left: 30px;
  right: 30px;
  background-color: var(--white);
  padding: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.project-carousel-items .project-image .project-content h3 {
  margin-bottom: 10px;
}

.project-carousel-items .project-image .project-content h3 a:hover {
  color: var(--theme);
}

.project-carousel-items .project-image .project-content p {
  color: #616670;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.project-carousel-items .project-image .project-content .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 15px;
  top: -25px;
}

.project-carousel-items .project-image .project-content .icon:hover {
  background-color: var(--header);
  color: var(--white);
}

.project-carousel-items:hover .project-image .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.project-wrapper
  .swiper-slide.swiper-slide-active
  .project-carousel-items
  .project-image
  .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.project-details-wrapper .project-details-items .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.project-details-wrapper .project-details-items .project-details-content {
  background-color: var(--bg);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 5px;
  margin: -150px 40px 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .project-details-wrapper .project-details-items .project-details-content {
    margin: 0;
    padding: 30px;
  }
}

.project-details-wrapper .project-details-items .project-details-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.project-details-wrapper
  .project-details-items
  .project-details-content
  .d-list {
  margin-top: 20px;
}

.project-details-wrapper
  .project-details-items
  .project-details-content
  .d-list
  li
  i {
  color: var(--theme);
  margin-right: 5px;
}

.project-details-wrapper
  .project-details-items
  .project-details-content
  .d-list
  li:not(:last-child) {
  margin-bottom: 15px;
}

.project-details-wrapper .project-details-items .pro-details-items {
  margin-top: 50px;
}

.project-details-wrapper .project-details-items .pro-details-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.project-details-wrapper
  .project-details-items
  .pro-details-items
  .pro-details-content-items {
  padding: 40px 30px;
  background-color: var(--bg);
  height: 100%;
}

.project-details-wrapper
  .project-details-items
  .pro-details-items
  .pro-details-content-items
  .pro-details-cont {
  margin-bottom: 17px;
}

.project-details-wrapper
  .project-details-items
  .pro-details-items
  .pro-details-content-items
  .pro-details-cont
  h3 {
  margin-bottom: 15px;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 5px;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  h3 {
  margin-bottom: 10px;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  ul {
  margin-top: 30px;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  ul
  li {
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 14px 20px;
  font-size: 20px;
  border-radius: 5px;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  ul
  li:not(:last-child) {
  margin-bottom: 15px;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  ul
  li
  span {
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  .social-icon
  a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--black);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.project-details-wrapper
  .main-sidebar
  .single-sidebar-widget
  .project-catagory
  .social-icon
  a:hover {
  background-color: var(--theme);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115px;
  height: 115px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(166, 161, 130, 0.7);
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot {
  text-align: center;
  margin-top: 40px;
  margin-bottom: -7px;
}

.swiper-dot .swiper-pagination-bullet {
  width: 12px;
  height: 8px;
  transition: 0.6s;
  background-color: #d9d9d9;
  opacity: 1;
  border-radius: 60px;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 51px;
}

.array-button {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 20px;
}

.array-button .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: rgba(166, 161, 130, 0.2);
  color: var(--theme);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .array-button .array-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}

.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}

.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .array-button .array-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}

.array-button .array-next:hover {
  background-color: rgba(166, 161, 130, 0.2);
  color: var(--theme);
}

.array-button.radius-none .array-prev,
.array-button.radius-none .array-next {
  border-radius: 0 !important;
}

.mt-10 {
  margin-top: 10px;
}

/* @media (max-width: 575px) {
  br {
    display: none;
  }
} */

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.nice-select {
  font-size: 16px;
  width: unset;
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 16px 20px;
  font-weight: normal;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .nice-select {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .nice-select {
    padding: 12px 18px;
  }
}

.nice-select span {
  color: rgba(255, 255, 255, 0.7019607843);
  font-size: 16px;
  margin-bottom: 0 !important;
}

.nice-select option {
  color: rgba(255, 255, 255, 0.7019607843);
}

.nice-select .current {
  margin-right: 12px;
}

.nice-select:after {
  right: 23px;
  border-bottom: 1px solid var(--theme);
  border-right: 1px solid var(--theme);
  width: 10px;
  height: 10px;
}

.nice-select.open .list {
  background: var(--black);
  margin-top: 16px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.nice-select .option.selected.focus {
  background: var(--black);
  outline: none;
  color: var(--theme);
  text-transform: capitalize;
  font-size: 16px;
}

.nice-select .option {
  border: none;
}

.nice-select .option:hover {
  background: transparent;
}

.head-color {
  color: var(--header);
}

.footer-bg {
  background-color: var(--black);
}

.background-black {
  background-color: var(--black) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.border-none {
  border-top: none !important;
}

.ml-100 {
  margin-left: 100px !important;
}

@media (max-width: 991px) {
  .ml-100 {
    margin-left: 0 !important;
  }
}

.border-radius-none {
  border-radius: 0 !important;
}

.border-radius-none input {
  border-radius: 0 !important;
}

.text-color {
  color: rgba(255, 255, 255, 0.7019607843);
}

@media (max-width: 991px) {
  .title-responsive {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

.mb-10 {
  margin-bottom: -10px !important;
}

.style-2-bg {
  position: relative;
}

.style-2-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: -100px;
  z-index: -1;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.box-shadow {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}

.w-100 {
  width: 100% !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-15 {
  margin-bottom: -15px !important;
}

.mt-40 {
  padding-top: 40px;
}

.team-section {
  position: relative;
}

.team-section .light-shape {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  right: 0;
}

@media (max-width: 1399px) {
  .team-section .light-shape {
    display: none;
  }
}

.single-team-items {
  margin-top: 30px;
  overflow: hidden;
}

.single-team-items .team-image {
  max-width: 370px;
  height: 353px;
  border-radius: 5px;
  position: relative;
}

@media (max-width: 1199px) {
  .single-team-items .team-image {
    max-width: 550px;
  }
}

.single-team-items .team-image .team-content {
  padding: 20px;
  background-color: var(--bg);
  border-radius: 5px 0 5px 0;
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 100%;
}

@media (max-width: 1399px) {
  .single-team-items .team-image .team-content {
    left: 0;
    border-radius: 0;
  }
}

.single-team-items .team-image .team-content h3 a:hover {
  color: var(--theme);
}

.single-team-items .team-image .team-content p {
  margin-bottom: 5px;
}

.single-team-items .team-image .team-content .social-profile {
  position: absolute;
  right: -5px;
  bottom: 56px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

.single-team-items .team-image .team-content .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.single-team-items .team-image .team-content .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  background: var(--theme);
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 0 5px 5px 0;
  margin-bottom: 10px;
}

.single-team-items .team-image .team-content .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  background: var(--header);
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0 5px 0 5px;
}

.single-team-items .team-image .team-content .social-profile .plus-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

.single-team-items .team-image .team-content .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-card-items {
  margin-top: 30px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--bg2);
  text-align: center;
}

.team-card-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
}

.team-card-items .team-content {
  padding: 30px 15px;
}

.team-card-items .team-content h3 {
  margin-bottom: 5px;
}

.team-card-items .team-content h3 a {
  color: var(--white);
}

.team-card-items .team-content h3 a:hover {
  color: var(--theme);
}

.team-card-items .team-content p {
  color: var(--white);
}

.team-card-items .team-content .social-icon {
  gap: 20px;
  position: relative;
  margin-top: 20px;
}

.team-card-items .team-content .social-icon a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 5px;
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--text);
}

.team-card-items .team-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.team-card-items.style-2 {
  margin-top: 0;
  background-color: var(--bg);
  border: none;
}

.team-card-items.style-2 .team-content h3 a {
  color: var(--header);
}

.team-card-items.style-2 .team-content h3 a:hover {
  color: var(--theme);
}

.team-card-items.style-2 .team-content p {
  color: var(--text);
}

.team-card-items.style-2 .team-content .social-icon a {
  border: 1px solid var(--border);
  color: var(--header);
}

.team-card-items.style-2 .team-content .social-icon a:hover {
  color: var(--white);
}

.team-box-items {
  margin-top: 30px;
}

.team-box-items .team-image img {
  width: 100%;
  height: 100%;
}

.team-box-items .team-content {
  padding: 40px;
  background-color: var(--bg2);
  position: relative;
  z-index: 9;
  margin-top: -120px;
  margin-left: 20px;
  margin-right: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .team-box-items .team-content {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .team-box-items .team-content {
    padding: 25px 20px;
  }
}

.team-box-items .team-content p {
  color: var(--white);
  margin-bottom: 5px;
}

.team-box-items .team-content h3 {
  font-size: 28px;
}

@media (max-width: 1199px) {
  .team-box-items .team-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .team-box-items .team-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .team-box-items .team-content h3 {
    font-size: 22px;
  }
}

.team-box-items .team-content h3 a {
  color: var(--white);
}

.team-box-items .team-content h3 a:hover {
  color: var(--theme);
}

.team-box-items .team-content .social-profile {
  position: absolute;
  right: 30px;
  bottom: 40px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .team-box-items .team-content .social-profile {
    bottom: 90px;
  }
}

@media (max-width: 1199px) {
  .team-box-items .team-content .social-profile {
    right: 30px;
    bottom: 40px;
  }
}

@media (max-width: 991px) {
  .team-box-items .team-content .social-profile {
    right: 20px;
    bottom: 70px;
  }
}

@media (max-width: 767px) {
  .team-box-items .team-content .social-profile {
    right: 10px;
    bottom: 60px;
  }
}

@media (max-width: 575px) {
  .team-box-items .team-content .social-profile {
    right: 30px;
    bottom: 40px;
  }
}

.team-box-items .team-content .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.team-box-items .team-content .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  background: var(--theme);
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}

.team-box-items .team-content .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 16px;
}

.team-box-items .team-content .social-profile .plus-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

.team-box-items .team-content .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-box-items:hover .team-content {
  opacity: 1;
  visibility: visible;
}

.team-box-items.active .team-content {
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper .team-details-image {
  max-width: 630px;
  height: 714px;
  position: relative;
  z-index: -1;
}

@media (max-width: 991px) {
  .team-details-wrapper .team-details-image {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .team-details-wrapper .team-details-image {
    height: 550px;
  }
}

@media (max-width: 575px) {
  .team-details-wrapper .team-details-image {
    height: 450px;
  }
}

.team-details-wrapper .team-details-content {
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 60px 40px;
  margin-left: -100px;
  z-index: 9;
}

@media (max-width: 991px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .team-details-wrapper .team-details-content {
    padding: 40px 30px;
  }
}

.team-details-wrapper .team-details-content .progress-wrap {
  margin-bottom: 40px;
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items:not(:last-child) {
  margin-bottom: 30px;
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .pro-head
  .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .pro-head
  .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .progress {
  background: #e6e6e6;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
  border-radius: 5px;
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
  border-radius: 5px;
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .style-two {
  animation: load2 3s normal forwards;
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .style-three {
  animation: load3 3s normal forwards;
}

.team-details-wrapper
  .team-details-content
  .progress-wrap
  .pro-items
  .style-four {
  animation: load4 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 85%;
  }
}

@keyframes load4 {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

.team-contact-wrapper .contact-form-items .form-clt {
  position: relative;
}

.team-contact-wrapper .contact-form-items .form-clt input,
.team-contact-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bg);
  border: none;
  color: var(--text);
  padding: 16px 30px;
  border-radius: 5px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .team-contact-wrapper .contact-form-items .form-clt input,
  .team-contact-wrapper .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .team-contact-wrapper .contact-form-items .form-clt input,
  .team-contact-wrapper .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}

.team-contact-wrapper .contact-form-items .form-clt input::placeholder,
.team-contact-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}

.team-contact-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 135px;
}

.team-contact-wrapper .team-biography h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.team-contact-wrapper .team-biography .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.team-contact-wrapper .team-biography .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  text-align: center;
  color: var(--header);
  background-color: var(--bg);
}

.team-contact-wrapper .team-biography .contact-info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
}

.team-contact-wrapper .team-biography .contact-info-items .content h6 a {
  color: var(--text);
}

.shop-section .array-button .array-prev {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  border: 1px solid var(--border);
  color: var(--white);
  font-weight: bold;
}

.shop-section .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.shop-section .array-button .array-next {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  border: 1px solid var(--theme);
  color: var(--theme);
  font-weight: bold;
}

.shop-section .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.shop-items {
  margin-top: 30px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--bg2);
}

.shop-items .shop-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
}

.shop-items .shop-content {
  padding: 30px;
}

@media (max-width: 575px) {
  .shop-items .shop-content {
    padding: 25px;
  }
}

.shop-items .shop-content .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-items .shop-content .price .star i {
  font-size: 14px;
  color: var(--theme);
}

.shop-items .shop-content .price .star .color-2 {
  color: var(--text);
}

.shop-items .shop-content .price h4 {
  color: var(--theme);
}

.shop-items .shop-content .title {
  margin-top: 25px;
}

@media (max-width: 575px) {
  .shop-items .shop-content .title {
    margin-top: 15px;
  }
}

.shop-items .shop-content .title a {
  color: var(--white);
}

.shop-items .shop-content .title a:hover {
  color: var(--theme);
}

.shop-items .shop-content .link-btn {
  margin-top: 20px;
  color: var(--theme);
}

@media (max-width: 575px) {
  .shop-items .shop-content .link-btn {
    margin-top: 10px;
  }
}

.shop-card-items .shop-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.shop-card-items .shop-content {
  padding: 20px;
  background-color: var(--white);
  position: relative;
  box-shadow: var(---box-shadow);
  z-index: 9;
  border-radius: 0 5px 5px 5px;
  margin-right: 30px;
  margin-top: -60px;
}

.shop-card-items .shop-content h3 {
  margin-bottom: 10px;
}

.shop-card-items .shop-content h3 a:hover {
  color: var(--theme);
}

.shop-card-items .shop-content .star {
  margin-top: 15px;
}

.shop-card-items .shop-content .star i {
  color: var(--ratting);
}

.shop-card-items .shop-content .star .color-2 {
  color: #e6e6e6;
}

.shop-card-items .shop-content h4 {
  font-size: 24px;
  margin-top: 15px;
}

.main-cart-wrapper {
  border-radius: 5px;
}

.main-cart-wrapper .cart-wrapper {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 40px 40px;
}

.main-cart-wrapper .cart-wrapper .cart-items-wrapper table {
  width: 100%;
}

.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead {
  border-bottom: 1px solid var(--border);
}

.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead tr th {
  padding-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}

.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item td {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.main-cart-wrapper
  .cart-wrapper
  .cart-items-wrapper
  table
  tbody
  .cart-item
  .cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-cart-wrapper
  .cart-wrapper
  .cart-items-wrapper
  table
  tbody
  .cart-item
  .cart-item-price {
  color: var(--header);
}

.main-cart-wrapper
  .cart-wrapper
  .cart-items-wrapper
  table
  tbody
  .cart-item
  .cart-item-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg);
  width: 100px;
  border-radius: 5px;
  padding: 2px 20px;
}

.main-cart-wrapper
  .cart-wrapper
  .cart-items-wrapper
  table
  tbody
  .cart-item
  .cart-item-quantity
  span {
  display: block;
  color: var(--header);
}

.main-cart-wrapper
  .cart-wrapper
  .cart-items-wrapper
  table
  tbody
  .cart-item
  .cart-item-quantity
  .cart-item-quantity-controller
  a {
  display: block;
}

.main-cart-wrapper
  .cart-wrapper
  .cart-items-wrapper
  table
  tbody
  .cart-item
  .cart-item-quantity
  .cart-item-quantity-controller
  a
  i {
  color: var(--header);
}

.main-cart-wrapper
  .cart-wrapper
  .cart-items-wrapper
  table
  tbody
  .cart-item
  .cart-item-remove
  a
  i {
  color: var(--header);
}

.main-cart-wrapper .cart-wrapper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.main-cart-wrapper .cart-wrapper-footer form {
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-cart-wrapper .cart-wrapper-footer form input {
  padding: 5px 5px;
  border: none;
  text-transform: capitalize;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--text);
}

.main-cart-wrapper .cart-wrapper-footer form button {
  outline: none;
  border: none;
}

.main-cart-wrapper .cart-pragh-box {
  margin-top: 24px;
  padding-right: 30px;
}

.main-cart-wrapper .cart-graph {
  border: 1px solid var(--border);
  padding: 30px 30px;
  border-radius: 5px;
}

.main-cart-wrapper .cart-graph h4 {
  text-align: center;
  color: var(--header);
  margin-bottom: 30px;
}

.main-cart-wrapper .cart-graph ul {
  margin-bottom: 30px;
}

.main-cart-wrapper .cart-graph ul li {
  display: flex;
}

.main-cart-wrapper .cart-graph ul li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.main-cart-wrapper .cart-graph ul li span {
  width: 50%;
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  padding: 16px 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cart-wrapper {
    overflow-x: scroll;
  }

  .cart-wrapper .cart-items-wrapper {
    width: 700px;
  }

  .cart-wrapper .cart-wrapper-footer {
    width: 700px;
  }
}

.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 24px;
}

.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}

.checkout-radio
  .checkout-radio-wrapper
  .checkout-radio-single
  .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border);
  font-weight: 500;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio
  .checkout-radio-wrapper
  .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}

@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
}

.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  textarea,
.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  .country-select,
.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}

.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}

.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  ::placeholder {
  color: var(--header);
}

.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  .nice-select {
  background-color: var(--white);
}

.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  .nice-select
  span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}

.checkout-single-wrapper
  .checkout-single
  .checkout-single-form
  .input-single
  .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}

.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
}

.checkout-single-wrapper
  .checkout-single-bg
  .checkout-single-form
  .input-single
  textarea,
.checkout-single-wrapper
  .checkout-single-bg
  .checkout-single-form
  .input-single
  .country-select,
.checkout-single-wrapper
  .checkout-single-bg
  .checkout-single-form
  .input-single
  input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--theme);
  outline: none;
  color: var(--header);
}

.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.shop-details-wrapper .shop-details-image {
  position: relative;
}

.shop-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.shop-details-wrapper .shop-details-image .nav img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.shop-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
}

.shop-details-wrapper .shop-details-image .shop-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.shop-details-wrapper .product-details-content {
  margin-left: 60px;
}

@media (max-width: 1399px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 0;
  }
}

.shop-details-wrapper .product-details-content .star a {
  color: var(--theme);
  font-size: 16px;
  font-weight: 600;
}

.shop-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}

.shop-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}

.shop-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
}

.shop-details-wrapper .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .icon {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
  line-height: 40px;
}

.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
  padding: 20px 35px;
}

.shop-details-wrapper .product-details-content .details-info {
  position: relative;
}

.shop-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}

.shop-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px;
}

.shop-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize;
}

.shop-details-wrapper .single-tab {
  padding-top: 80px;
}

@media (max-width: 575px) {
  .shop-details-wrapper .single-tab {
    padding-top: 50px;
  }
}

.shop-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.shop-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}

.shop-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--theme);
}

.shop-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme);
  transition: 0.3s;
}

@media (max-width: 470px) {
  .shop-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}

.shop-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}

@media (max-width: 1399px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}

@media (max-width: 991px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}

.shop-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}

.shop-details-wrapper
  .single-tab
  .description-items
  .description-content
  .description-list-items {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .shop-details-wrapper
    .single-tab
    .description-items
    .description-content
    .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.shop-details-wrapper
  .single-tab
  .description-items
  .description-content
  .description-list-items
  .description-list
  li {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}

.shop-details-wrapper
  .single-tab
  .description-items
  .description-content
  .description-list-items
  .description-list
  li
  span {
  color: var(--text);
  font-weight: 400;
}

@media (max-width: 767px) {
  .shop-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}

.shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}

.shop-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}

.shop-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}

.shop-details-wrapper .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}

@media (max-width: 575px) {
  .shop-details-wrapper
    .single-tab
    .review-items
    .admin-items
    .content::before {
    display: none;
  }
}

.shop-details-wrapper
  .single-tab
  .review-items
  .admin-items
  .content
  .head-content
  h5
  span {
  font-size: 14px;
  margin-left: 30px;
}

.shop-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: var(--theme);
}

.shop-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}

.shop-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
}

.shop-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: var(--theme);
}

.shop-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}

.shop-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: var(--bg);
  font-size: 16px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}

.shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.faq-section {
  position: relative;
  background: #f7f6e9;
  /* padding: 0px 0 20px; */
}

.faq-wrapper .faq-box-area {
  padding: 30px 50px 30px 30px;
  border-radius: 5px;
  border: 1px solid var(--theme);
  display: inline-block;
  margin-top: 40px;
}

.faq-wrapper .faq-box-area .box-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.faq-wrapper .faq-box-area .box-items .content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-wrapper .faq-content p {
  margin-bottom: 30px;
  font-size: 19px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  opacity: 60%;
}

.faq-wrapper .faq-box-area .box-items .content h3 {
  font-size: 28px;
  font-weight: 700;
}

.faq-wrapper .accordion-item {
  border: none !important;
  background-color: var(--white);
  border-radius: 20px;
  width: 100%;
  margin-bottom: 10px !important;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: #000;
  letter-spacing: -0.2px;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  background-color: #fff;
  padding: 20px 30px 0;
  /* text-transform: capitalize; */
  font-size: 24px;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 1199px) {
  .faq-wrapper .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 20px 20px 0;
  }
}

.faq-wrapper .accordion-item .accordion-header .accordion-button span {
  margin-right: 20px;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
  font-size: 16px;
}

.faq-wrapper
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "\f077";
  font-family: "Font Awesome 5 Pro";
  background: transparent;
  font-weight: 500;
  color: var(--black);
  transform: unset;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #ffe361;
  box-shadow: var(---box-shadow);
  padding: 20px 30px 24px;
  color: var(--header);
  border-radius: 20px;
  /* height: 74px; */
  font-size: 20px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: -0.5px;
}

.faq-wrapper .accordion-item .accordion-collapse .accordion-body {
  padding-left: 30px;
  padding-top: 20px;
  padding-right: 30px;
  color: rgba(0, 0, 0, 0.702);
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 767px) {
  .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
    padding-left: 60px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
    padding-left: 50px;
    padding-bottom: 20px;
  }
}

.cta-banner-section {
  position: relative;
  z-index: 9;
}

.cta-banner-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  z-index: -1;
  height: 50%;
}

.cta-banner-wrapper {
  background-color: var(--black);
  padding: 60px 120px;
  display: flex;
  align-items: center;
  gap: 110px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .cta-banner-wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .cta-banner-wrapper {
    gap: 30px;
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper {
    padding: 40px;
    text-align: center;
  }
}

.cta-banner-wrapper .icon {
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .cta-banner-wrapper .icon {
    margin: 0px auto;
  }
}

.cta-banner-wrapper .icon::before {
  position: absolute;
  top: -120%;
  left: -12px;
  content: "";
  width: 180px;
  height: 390px;
  background-image: linear-gradient(
    180deg,
    #a6a182 0%,
    rgba(166, 161, 130, 0) 100%
  );
  z-index: -1;
  transform: rotate(15deg);
  bottom: 0;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper .icon::before {
    display: none;
  }
}

.cta-banner-wrapper .content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner-wrapper .content p {
  color: rgba(255, 255, 255, 0.7019607843);
}

.cta-banner-wrapper .newsletter-items {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper .newsletter-items {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }
}

.cta-banner-wrapper .newsletter-items .form-clt {
  flex-basis: 60%;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper .newsletter-items .form-clt {
    flex-basis: 100%;
  }
}

.cta-banner-wrapper .newsletter-items .form-clt input {
  position: relative;
  padding: 18px 30px;
  border: none;
  outline: none;
  background-color: transparent;
  border: 1px solid var(--white);
  width: 100%;
  font-size: 16px;
  color: var(--white);
  border-radius: 5px;
}

@media (max-width: 767px) {
  .cta-banner-wrapper .newsletter-items .form-clt input {
    padding: 14px 30px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper .newsletter-items .form-clt input {
    padding: 14px 25px;
  }
}

.cta-banner-wrapper .newsletter-items .form-clt input::placeholder {
  color: var(--white);
}

.cta-banner-wrapper .newsletter-items .theme-btn {
  padding: 25px 30px;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper .newsletter-items .theme-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .cta-banner-wrapper .newsletter-items .theme-btn {
    width: 100%;
    padding: 20px 30px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper .newsletter-items .theme-btn {
    padding: 18px 25px;
  }
}

.cta-banner-wrapper.style-2 {
  gap: 0;
  justify-content: space-between;
  padding: 60px 80px;
  background-color: var(--theme);
  border-radius: 0;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper.style-2 {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .cta-banner-wrapper.style-2 {
    gap: 0;
  }
}

@media (max-width: 767px) {
  .cta-banner-wrapper.style-2 {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper.style-2 {
    padding: 40px 30px;
  }
}

.cta-banner-wrapper.style-2 .newsletter-items {
  flex-basis: 70%;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper.style-2 .newsletter-items {
    flex-basis: 100%;
    flex-wrap: initial;
  }
}

@media (max-width: 1199px) {
  .cta-banner-wrapper.style-2 .newsletter-items {
    flex-wrap: wrap;
  }
}

.cta-banner-wrapper.style-2 .newsletter-items .form-clt {
  flex-basis: 65%;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper.style-2 .newsletter-items .form-clt {
    flex-basis: 50%;
  }
}

@media (max-width: 1199px) {
  .cta-banner-wrapper.style-2 .newsletter-items .form-clt {
    flex-basis: 100%;
  }
}

.cta-banner-wrapper.style-3 {
  background-color: transparent;
  border-radius: 0;
  display: initial;
  position: relative;
  z-index: 9;
}

.cta-banner-wrapper.style-3 .cta-shape {
  position: absolute;
  bottom: 0;
  left: -20px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper.style-3 .cta-shape {
    bottom: -315px;
  }
}

@media (max-width: 1199px) {
  .cta-banner-wrapper.style-3 .cta-shape {
    display: none;
  }
}

.cta-banner-wrapper.style-3 .cta-img-2 img {
  width: 100%;
  height: 100%;
}

.cta-banner-wrapper.style-3 .content {
  position: relative;
}

.cta-banner-wrapper.style-3 .content .arrow-shape {
  position: absolute;
  right: 15%;
  top: 30%;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper.style-3 .content .arrow-shape {
    display: none;
  }
}

@media (max-width: 1399px) {
  .cta-banner-wrapper.style-3 .content .newsletter-items .form-clt {
    flex-basis: 74%;
  }
}

@media (max-width: 1199px) {
  .cta-banner-wrapper.style-3 .content .newsletter-items .form-clt {
    flex-basis: 100%;
  }
}

.cta-banner-wrapper.style-3 .content .newsletter-items .form-clt input {
  background: rgba(255, 255, 255, 0.1) !important;
  border: none;
  border-radius: 0;
}

.cta-banner-wrapper.style-3 .content .newsletter-items .theme-btn {
  border-radius: 0;
}

.cta-banner-wrapper.style-3 .content .newsletter-items .theme-btn::before,
.cta-banner-wrapper.style-3 .content .newsletter-items .theme-btn::after {
  border-radius: 0;
}

.cta-banner-wrapper-2 {
  background-color: var(--theme);
  border-radius: 5px;
  padding: 75px 60px;
  position: relative;
  margin-top: 70px;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper-2 {
    margin-top: -30px;
  }
}

@media (max-width: 767px) {
  .cta-banner-wrapper-2 {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper-2 {
    padding: 40px 30px;
  }
}

.cta-banner-wrapper-2 .cta-image {
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 9;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper-2 .cta-image {
    display: none;
  }
}

.cta-banner-wrapper-2 .cta-image .circle-shape {
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: -1;
}

.cta-banner-wrapper-2 .section-title-area {
  margin-left: 350px;
}

@media (max-width: 1399px) {
  .cta-banner-wrapper-2 .section-title-area {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .cta-banner-wrapper-2 .section-title-area {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
}

.cta-banner-section-2 {
  position: relative;
}

.cta-banner-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg2);
  top: 50%;
}

.cta-banner-section-3 {
  position: relative;
  z-index: 9;
}

.cta-banner-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  top: 50%;
  z-index: -1;
}

.cta-banner-section-4 {
  background-color: var(--theme);
}

.cta-banner-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg2);
  padding: 70px 80px;
  position: relative;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .cta-banner-wrapper-3 {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper-3 {
    padding: 40px 30px;
  }
}

.cta-banner-wrapper-3 .dot-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-banner-wrapper-3 .dot-shape img {
  width: 100%;
  height: 100%;
}

.cta-banner-wrapper-3 .content {
  position: relative;
  z-index: 9;
}

.cta-banner-wrapper-3 .content h2 {
  color: var(--white);
}

.cta-banner-wrapper-3 .content .newsletter-items .form-clt {
  position: relative;
  margin-top: 40px;
}

.cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
  border: 1px solid var(--white);
  width: 600px;
  padding: 25px 20px;
  background-color: transparent;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
    width: 450px;
    padding: 18px 20px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
    width: 480px;
  }
}

@media screen and (max: 550px) {
  .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
    width: 400px;
  }
}

@media (max-width: 470px) {
  .cta-banner-wrapper-3 .content .newsletter-items .form-clt input {
    width: 345px;
  }
}

.cta-banner-wrapper-3 .content .newsletter-items .form-clt input::placeholder {
  color: var(--white);
}

.cta-banner-wrapper-3 .content .newsletter-items .form-clt .theme-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
}

@media (max-width: 767px) {
  .cta-banner-wrapper-3 .content .newsletter-items .form-clt .theme-btn {
    padding: 14px 18px;
    font-size: 12px;
  }
}

.marque-section {
  position: relative;
}

@media (max-width: 1199px) {
  .marque-section .line-area {
    display: none;
  }
}

.marque-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}

.marque-section .line-area span:nth-child(2) {
  left: 50%;
}

.marque-section .line-area span:nth-child(3) {
  left: 80%;
}

.offcanvas__logo img {
  width: 100px;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 45px;
  margin-top: 0px;
  padding-bottom: 46px;
}

@media (max-width: 575px) {
  .marquee-wrapper {
    margin-top: 0px;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}

.marquee-wrapper.style-2 {
  line-height: 40px;
}

.marquee-wrapper.style-2 .text-slider {
  font-size: 24px;
  color: var(--header);
  margin-right: 40px;
}

.text-slider {
  font-size: 120px;
  height: 100px;
  line-height: 90px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 20px;
  color: #e1e1de;
}

@media (max-width: 575px) {
  .text-slider {
    font-size: 50px;
    height: 70px;
    line-height: 65px;
  }
}

/* .marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
} */

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }

  100% {
    right: -100%;
  }
}

.testimonial-wrapper {
  position: relative;
  margin-top: 30px;
  display: inline-block;
}

@media (max-width: 991px) {
  .testimonial-wrapper {
    width: 100%;
  }
}

.testimonial-wrapper .array-button {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .array-button {
    display: none;
  }
}

.testimonial-wrapper .array-button .array-prev {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  border: 1px solid var(--border);
  color: var(--header);
  font-weight: bold;
}

.testimonial-wrapper .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.testimonial-wrapper .array-button .array-next {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  border: 1px solid var(--theme);
  color: var(--theme);
  font-weight: bold;
}

.testimonial-wrapper .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.testimonial-wrapper .testimonial-image {
  height: 534px;
  width: 850px;
  border-radius: 5px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-image {
    width: 600px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-image {
    width: initial;
    max-width: 850px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image {
    height: 480px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-image {
    height: 430px;
  }
}

.testimonial-wrapper .testimonial-area {
  max-width: 670px;
}

.testimonial-wrapper .testimonial-items {
  padding: 60px;
  background-color: var(--white);
  border-radius: 5px;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-items {
    padding: 40px 30px;
  }
}

.testimonial-wrapper .testimonial-items .icon {
  position: absolute;
  top: 60px;
  right: 60px;
  font-size: 48px;
  color: var(--theme);
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-items .icon {
    top: 50px;
    right: 50px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .icon {
    top: 40px;
    right: 20px;
    font-size: 38px;
  }
}

.testimonial-wrapper .testimonial-items .client-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-wrapper .testimonial-items .client-items .client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.testimonial-wrapper .testimonial-items .client-items .client-content h3 {
  margin-bottom: 5px;
}

.testimonial-wrapper .testimonial-items .star {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .star {
    margin-top: 20px;
  }
}

.testimonial-wrapper .testimonial-items .star i {
  color: var(--ratting);
}

.testimonial-wrapper .testimonial-items .star .text-color {
  color: #e6e6e6;
}

.testimonial-wrapper .testimonial-items p {
  font-size: 18px;
  margin-top: 20px;
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items p {
    margin-top: 15px;
    font-size: 16px;
  }
}

.testimonial-wrapper.style-2 {
  position: relative;
}

.testimonial-wrapper.style-2 .testimonial-image {
  height: 393px;
  margin-top: -160px;
  width: 960px;
}

@media (max-width: 991px) {
  .testimonial-wrapper.style-2 .testimonial-image {
    max-width: 960px;
    margin-top: 0;
    width: initial;
  }
}

.testimonial-wrapper.style-2 .testimonial-area {
  padding-top: 110px;
  max-width: 740px;
  margin-left: -100px;
}

@media (max-width: 991px) {
  .testimonial-wrapper.style-2 .testimonial-area {
    padding-top: 0;
    margin-left: 0;
  }
}

.testimonial-wrapper.style-2 .testimonial-items {
  background-color: var(--black);
  border-radius: 0;
  position: relative;
}

.testimonial-wrapper.style-2 .testimonial-items::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  content: "";
  background-color: var(--theme);
  opacity: 0.5;
}

.testimonial-wrapper.style-2 .testimonial-items h4 {
  color: var(--white);
  font-weight: 400;
  line-height: 145%;
  font-size: 18px;
}

@media (max-width: 575px) {
  .testimonial-wrapper.style-2 .testimonial-items h4 {
    font-size: 16px;
  }
}

.testimonial-wrapper.style-2 .testimonial-items .client-content {
  margin-top: 30px;
}

.testimonial-wrapper.style-2 .testimonial-items .client-content h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.testimonial-wrapper.style-2 .testimonial-items .client-content span {
  color: var(--white);
  font-weight: 400;
}

.testimonial-wrapper.style-2 .testimonial-items .icon {
  bottom: 55px;
  right: 60px;
  top: initial;
  opacity: 0.5;
}

.testimonial-wrapper.style-2 .array-button {
  position: absolute;
  bottom: -88%;
  left: 55%;
  transform: translateX(-50%);
  gap: 0;
}

.testimonial-wrapper.style-2 .array-button .array-prev {
  color: var(--black);
  border-radius: 0;
}

.testimonial-wrapper.style-2 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}

.testimonial-wrapper.style-2 .array-button .array-next {
  background-color: var(--theme);
  color: var(--white);
  border-radius: 0;
}

.testimonial-wrapper.style-2 .array-button .array-next:hover {
  background-color: var(--black);
}

.testimonial-wrapper.style-2::before {
  position: absolute;
  bottom: 25px;
  left: 0;
  height: 1px;
  width: 350px;
  content: "";
  background-color: var(--theme);
}

.testimonial-wrapper-2 {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-image {
  max-width: 630px;
  height: 507px;
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-image {
    height: 480px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-image {
    height: 430px;
  }
}

.testimonial-wrapper-2 .testimonial-content {
  padding: 0 90px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-content {
    padding: 0;
  }
}

.testimonial-wrapper-2 .testimonial-content .client-info {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content .client-info {
    margin-bottom: 20px;
  }
}

.testimonial-wrapper-2 .testimonial-content .client-info h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.testimonial-wrapper-2 .testimonial-content .client-info span {
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-content p {
  color: var(--white);
  font-size: 18px;
}

.testimonial-wrapper-2 .testimonial-content .social-icon {
  padding: 10px 35px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin-top: 30px;
}

.testimonial-wrapper-2 .testimonial-content .social-icon a {
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-content .social-icon a:hover {
  color: var(--theme);
}

.testimonial-wrapper-2 .array-button {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .array-button {
    display: none;
  }
}

.testimonial-wrapper-2 .array-button .array-prev {
  background-color: transparent;
  color: var(--theme) !important;
  border: 1px solid var(--theme);
}

.testimonial-wrapper-2 .array-button .array-prev i {
  color: var(--theme);
}

.testimonial-wrapper-2 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}

.testimonial-wrapper-2 .array-button .array-next {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.testimonial-wrapper-2 .array-button .array-next i {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .array-button .array-next:hover {
  background-color: var(--theme);
  border: 1px solid transparent;
}

.testimonial-wrapper-2 .array-button .array-next:hover i {
  color: var(--white);
}

.testimonial-section-5 {
  position: relative;
}

.testimonial-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg2);
  left: 45%;
}

@media (max-width: 991px) {
  .testimonial-section-5::before {
    display: none;
  }
}

.testimonial-section-5 .frame-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.brand-wrapper .brand-image {
  text-align: center;
}

.brand-wrapper.style-2 {
  border-bottom: 1px solid var(--text);
}

.pricing-box-items {
  margin-top: 30px;
}

.pricing-box-items .pricing-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.pricing-box-items .pricing-content {
  padding: 20px;
  margin: 0 20px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
  z-index: 9;
}

.pricing-box-items .pricing-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  z-index: -1;
  height: 83%;
  border-radius: 5px;
}

.pricing-box-items .pricing-content h3 {
  margin-bottom: 5px;
}

.pricing-box-items .pricing-content h3 a:hover {
  color: var(--theme);
}

.pricing-box-items .pricing-content h4 {
  background-color: var(--theme);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 25px;
  margin-bottom: -25px;
}

.pricing-card-items {
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .pricing-card-items {
    padding: 30px 30px;
  }
}

@media (max-width: 575px) {
  .pricing-card-items {
    padding: 30px 20px;
  }
}

.pricing-card-items .icon {
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 70px;
  color: var(--theme);
}

@media (max-width: 767px) {
  .pricing-card-items .icon {
    top: 30px;
    right: 30px;
  }
}

@media (max-width: 575px) {
  .pricing-card-items .icon {
    top: 20px;
    right: 20px;
  }
}

.pricing-card-items .pricing-header {
  position: relative;
}

.pricing-card-items .pricing-header h2 {
  font-size: 42px;
  color: var(--header);
}

.pricing-card-items .pricing-header h2 span {
  font-size: 16px;
  color: var(--text);
  margin-left: -5px;
  font-weight: 400;
}

.pricing-card-items .pricing-header h3 {
  font-size: 22px;
  color: var(--header);
  margin-bottom: 10px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .pricing-card-items .pricing-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .pricing-card-items .pricing-header h3 {
    font-size: 18px;
  }
}

.pricing-card-items .pricing-header p {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}

@media (max-width: 575px) {
  .pricing-card-items .pricing-header p {
    padding-bottom: 20px;
  }
}

.pricing-card-items ul {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .pricing-card-items ul {
    margin-top: 20px;
  }
}

.pricing-card-items ul li:not(:last-child) {
  margin-bottom: 12px;
}

.pricing-card-items ul li i {
  margin-right: 10px;
  color: var(--theme);
}

.pricing-card-items .pricing-button {
  margin-top: 40px;
}

.pricing-card-items .pricing-button .theme-btn {
  background-color: var(--bg);
  width: 100%;
  text-align: center;
  color: var(--header);
}

.pricing-card-items .pricing-button .theme-btn::before,
.pricing-card-items .pricing-button .theme-btn::after {
  background-color: var(--theme);
}

.pricing-card-items .pricing-button .theme-btn:hover {
  color: var(--white);
}

.pricing-card-items:hover {
  border: 1px solid var(--theme);
  transform: translateY(-10px);
}

.news-card-items {
  margin-top: 30px;
}

.news-card-items .news-image {
  max-width: 370px;
  height: 340px;
}

@media (max-width: 1399px) {
  .news-card-items .news-image {
    max-width: 550px;
  }
}

.news-card-items .news-content {
  position: relative;
  z-index: 9;
  padding: 30px;
  background-color: var(--bg);
  margin-left: 40px;
  border-radius: 5px;
  margin-top: -50px;
  border-bottom: 3px solid transparent;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .news-card-items .news-content {
    margin: 0;
  }
}

.news-card-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-card-items .news-content ul li {
  font-size: 14px;
}

.news-card-items .news-content ul li i {
  margin-right: 7px;
}

.news-card-items .news-content h3 {
  margin-top: 15px;
  margin-bottom: 20px;
}

.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-card-items .news-content .link-btn {
  font-weight: 700;
}

.news-card-items:hover .news-content {
  border-bottom: 3px solid var(--theme);
}

.news-card-items.style-2 .news-image {
  height: 301px;
  max-width: 410px;
}

@media (max-width: 1199px) {
  .news-card-items.style-2 .news-image {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .news-card-items.style-2 .news-image {
    max-width: 650px;
    height: 450px;
  }
}

@media (max-width: 575px) {
  .news-card-items.style-2 .news-image {
    max-width: 550px;
    height: 350px;
  }
}

.news-card-items.style-2 .news-content {
  padding: 20px 0 0px;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: none;
}

.news-card-items.style-2 .news-content ul li {
  color: var(--black);
  letter-spacing: 2.4px;
  font-weight: 600;
}

.news-card-items.style-2 .news-content ul li i {
  color: var(--theme);
}

@media (max-width: 575px) {
  .news-card-items.style-2 .news-content h3 {
    margin-bottom: 10px;
  }
}

.news-card-items.style-2 .news-content p {
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .news-card-items.style-2 .news-content p {
    margin-bottom: 15px;
  }
}

.news-card-items.style-3 .news-image {
  height: 340px;
  max-width: 410px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .news-card-items.style-3 .news-image {
    max-width: 650px;
  }
}

.news-card-items.style-3 .news-content {
  margin-left: 15px;
  margin-right: 20px;
  border-radius: 0;
  border: none;
  margin-top: -60px;
}

.news-card-items.style-3 .news-content ul {
  flex-wrap: wrap;
  gap: 15px;
}

.news-card-items.style-3 .news-content ul li i {
  color: var(--theme);
}

.news-card-items.style-3 .news-content .link-btn i {
  color: var(--theme);
}

.section-title-area .array-prev {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: 1px solid var(--border);
  color: var(--header);
  font-weight: bold;
}

.section-title-area .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.section-title-area .array-next {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: 1px solid var(--theme);
  color: var(--theme);
  font-weight: bold;
}

.section-title-area .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-slider-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 1399px) {
  .news-slider-items {
    margin: 30px auto;
    max-width: 650px;
  }
}

@media (max-width: 767px) {
  .news-slider-items {
    flex-wrap: wrap;
  }
}

.news-slider-items .news-content {
  padding: 30px;
  border: 1px solid var(--text);
  border-radius: 5px;
  margin-right: -2px;
}

@media (max-width: 767px) {
  .news-slider-items .news-content {
    flex-basis: 100%;
  }
}

.news-slider-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .news-slider-items .news-content ul {
    margin-bottom: 15px;
  }
}

.news-slider-items .news-content ul li {
  font-size: 14px;
  color: var(--white);
}

.news-slider-items .news-content ul li i {
  margin-right: 7px;
  color: var(--theme);
}

.news-slider-items .news-content h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

@media (max-width: 575px) {
  .news-slider-items .news-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

.news-slider-items .news-content h3 a {
  color: var(--white);
}

.news-slider-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-slider-items .news-content p {
  margin-bottom: 20px;
  color: var(--white);
}

@media (max-width: 575px) {
  .news-slider-items .news-content p {
    margin-bottom: 15px;
  }
}

.news-slider-items .news-image {
  max-width: 264px;
  height: 361px;
  border-radius: 5px;
  flex-basis: 50%;
}

@media (max-width: 767px) {
  .news-slider-items .news-image {
    flex-basis: 100%;
    max-width: 550px;
  }
}

@media (max-width: 767px) {
  .news-section .section-title-area {
    text-align: center;
    justify-content: center;
  }
}

.news-box-items {
  margin-top: 30px;
}

.news-box-items .news-image {
  height: 228px;
  border-radius: 5px;
}

.news-box-items .news-content {
  margin-top: 20px;
}

.news-box-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.news-box-items .news-content ul li {
  color: var(--white);
}

.news-box-items .news-content ul li i {
  margin-right: 5px;
}

.news-box-items .news-content h3 {
  margin-bottom: 20px;
}

.news-box-items .news-content h3 a {
  color: var(--white);
}

.news-box-items .news-content h3 a:hover {
  color: var(--theme);
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
  font-weight: 600;
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}

.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }

  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;

  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}

.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote,
  .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper
  .single-blog-post.category-video-post
  .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme);
  border: none;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}

@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content,
  .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
  .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 30px;
  color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 350px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
  border-radius: 5px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme);
  text-align: center;
  border-radius: 5px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper
  .single-blog-post
  .post-featured-thumb
  .video-play-btn
  .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}

@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme);
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}

.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid #ededed;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
}

.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul > li {
  margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
  color: var(--theme);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
  font-size: 24px;
  font-weight: 600;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}

.search_widget form input {
  background-color: var(--bg);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}

.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.popular-posts .single-post-item:last-child,
.popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
  overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme);
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme);
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}

.widget_categories ul li:last-child a {
  margin-bottom: 0;
}

.widget_categories ul li a {
  position: relative;
  background: var(--bg);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
  color: var(--theme);
}

.widget_categories ul li a i {
  margin-right: 10px;
}

.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 11px 26px;
  line-height: 1;
  font-size: 15px;
  font-weight: 600;
  background: var(--bg);
  margin-right: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.tagcloud a:last-child {
  margin-right: 0;
}

.tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}

.social-share a:hover {
  color: var(--theme);
}

.tag-share-wrap {
  padding-bottom: 50px;
}

.tag-share-wrap h4 {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
  font-size: 26px;
}

@media (max-width: 767px) {
  .comments-heading h3,
  .related-post-wrap h3,
  .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
  font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}

@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}

.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 12px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #727475;
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}

@media (max-width: 767px) {
  .comments-item-list
    .single-comment-item
    .author-info-comment
    .info
    .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list
  .single-comment-item
  .author-info-comment
  .info
  .theme-btn
  i {
  margin-right: 10px;
}

.comments-item-list
  .single-comment-item
  .author-info-comment
  .info
  .theme-btn.minimal-btn::before,
.comments-item-list
  .single-comment-item
  .author-info-comment
  .info
  .theme-btn.minimal-btn::after {
  background-color: initial;
}

.comments-item-list
  .single-comment-item
  .author-info-comment
  .info
  .theme-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

.comments-item-list
  .single-comment-item
  .author-info-comment
  .info
  .theme-btn:hover
  a {
  color: var(--white) !important;
}

.comments-item-list
  .single-comment-item
  .author-info-comment
  .info
  .theme-btn:hover
  i {
  transform: translate(0);
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}

.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--theme);
  font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}

.comments-item-list
  .single-comment-item
  .author-info-comment
  .theme-btn:hover
  a {
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}

@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}

.comment-form label {
  margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
  background-color: var(--bg);
}

@media (max-width: 585px) {
  .comment-form input,
  .comment-form textarea {
    padding: 15px;
  }
}

.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}

@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}

.comment-form .theme-btn {
  display: inline-block;
  line-height: 1.2;
  padding: 24px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}

@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}

.comment-form .theme-btn i {
  margin-right: 10px;
}

.comment-form .theme-btn:hover i {
  transform: translate(0);
}

.comment ul {
  list-style-type: disc;
}

.comment ul ol {
  margin-bottom: 0;
}

.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}

.comment ol ul {
  margin-bottom: 0;
}

.comment ol ol {
  margin-bottom: 0;
}

.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme);
}

.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme);
}

.site_info_widget .social-link {
  margin-top: 35px;
}

.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.portfolio-wrapper {
  margin-right: -35%;
}

@media (max-width: 1199px) {
  .portfolio-wrapper {
    margin-right: 0;
  }
}

.portfolio-wrapper.style-2 {
  margin-right: 0;
  padding: 0 95px;
}

@media (max-width: 1399px) {
  .portfolio-wrapper.style-2 {
    padding: 0;
  }
}

.portfolio-wrapper.style-2 .portfolio-items {
  margin-top: 0;
}

@media (max-width: 767px) {
  .portfolio-wrapper.style-2 .portfolio-items .portfolio-image {
    max-width: 700px;
  }
}

.portfolio-items {
  margin-top: 30px;
  position: relative;
}

.portfolio-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  z-index: 1;
  top: 20px;
  width: 90%;
  height: 93%;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .portfolio-items::before {
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
  }
}

.portfolio-items .portfolio-image {
  max-width: 410px;
  height: 534px;
  border-radius: 5px;
  position: relative;
}

@media (max-width: 1399px) {
  .portfolio-items .portfolio-image {
    max-width: 550px;
  }
}

@media (max-width: 1199px) {
  .portfolio-items .portfolio-image {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .portfolio-items .portfolio-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .portfolio-items .portfolio-image {
    max-width: 550px;
  }
}

.portfolio-items .portfolio-image .portfolio-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .portfolio-items .portfolio-image .portfolio-content br {
    display: block;
  }
}

.portfolio-items .portfolio-image .portfolio-content .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  transition: all 0.4s ease-in-out;
  margin-bottom: 30px;
}

.portfolio-items .portfolio-image .portfolio-content .icon:hover {
  background-color: var(--white);
  color: var(--theme);
}

.portfolio-items .portfolio-image .portfolio-content h3 {
  margin-bottom: 10px;
}

.portfolio-items .portfolio-image .portfolio-content h3 a {
  color: var(--white);
}

.portfolio-items .portfolio-image .portfolio-content h3 a:hover {
  color: var(--theme);
}

.portfolio-items .portfolio-image .portfolio-content p {
  color: var(--white);
}

.portfolio-items:hover::before {
  opacity: 0.8;
  visibility: visible;
}

.portfolio-items:hover .portfolio-image .portfolio-content {
  opacity: 1;
  visibility: visible;
}

.portfolio-wrapper-2 {
  margin-bottom: 30px;
}

.portfolio-wrapper-2 .portfolio-content {
  display: flex;
  align-items: center;
  gap: 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}

@media (max-width: 767px) {
  .portfolio-wrapper-2 .portfolio-content {
    gap: 90px;
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  .portfolio-wrapper-2 .portfolio-content {
    gap: 70px;
    padding: 25px 0;
  }
}

.portfolio-wrapper-2 .portfolio-content:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-wrapper-2 .portfolio-content .content {
  position: relative;
  overflow: hidden;
}

.portfolio-wrapper-2 .portfolio-content .content::before {
  position: absolute;
  top: 6px;
  left: 0px;
  content: "";
  width: 90px;
  height: 16px;
  background-size: cover;
  background-image: url(../img/arrow.svg);
  left: -100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.portfolio-wrapper-2 .portfolio-content .content p {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.portfolio-wrapper-2 .portfolio-content h3 a {
  color: var(--white);
}

.portfolio-wrapper-2 .portfolio-content h3 a:hover {
  color: var(--theme);
}

.portfolio-wrapper-2 .portfolio-content:hover .content::before {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.portfolio-wrapper-2 .portfolio-content:hover .content p {
  padding-left: 110px;
}

.portfolio-wrapper-2 .portfolio-image {
  margin-left: 100px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .portfolio-wrapper-2 .portfolio-image {
    margin-left: 50px;
  }
}

@media (max-width: 1199px) {
  .portfolio-wrapper-2 .portfolio-image {
    margin-left: 0;
  }
}

.portfolio-wrapper-2 .portfolio-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.portfolio-wrapper-2 .portfolio-image::before {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 535px;
  height: 410px;
  border-radius: 5px;
  background-color: var(--theme);
  transform: rotate(-15deg);
  z-index: -1;
  opacity: 0.5;
}

@media (max-width: 1399px) {
  .portfolio-wrapper-2 .portfolio-image::before {
    width: 495px;
  }
}

@media (max-width: 1199px) {
  .portfolio-wrapper-2 .portfolio-image::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .portfolio-wrapper-3 {
    margin-top: -20px;
  }
}

.portfolio-wrapper-3 .portfolio-content {
  margin-left: 33px;
}

@media (max-width: 1199px) {
  .portfolio-wrapper-3 .portfolio-content {
    margin-left: 0;
  }

  .portfolio-wrapper-3 .portfolio-content br {
    display: block;
  }
}

@media (max-width: 575px) {
  .portfolio-wrapper-3 .portfolio-content {
    text-align: center;
  }
}

.portfolio-wrapper-3 .portfolio-content h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}

.portfolio-wrapper-3 .portfolio-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .portfolio-wrapper-3 .portfolio-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .portfolio-wrapper-3 .portfolio-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .portfolio-wrapper-3 .portfolio-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.portfolio-wrapper-3 .portfolio-content h3 a:hover {
  color: var(--theme);
}

.portfolio-wrapper-3 .portfolio-content p {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .portfolio-wrapper-3 .portfolio-content p {
    margin-bottom: 25px;
  }
}

.portfolio-wrapper-3 .portfolio-content ul {
  margin-bottom: 35px;
  margin-top: -10px;
}

.portfolio-wrapper-3 .portfolio-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.portfolio-wrapper-3 .portfolio-content ul li:not(:last-child) {
  margin-bottom: 15px;
}

.portfolio-wrapper-3 .portfolio-content .counter-item {
  display: inline-flex;
  gap: 20px;
  padding: 20px;
  background-color: #c1995b;
}

.portfolio-wrapper-3 .portfolio-content .counter-item h2 {
  font-size: 48px;
}

.portfolio-wrapper-3 .portfolio-content .counter-item h2 span {
  font-size: 48px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0;
}

.portfolio-wrapper-3 .portfolio-content .counter-item p {
  margin-bottom: 0;
}

.portfolio-wrapper-3 .project-image {
  margin-left: 33px;
}

@media (max-width: 1199px) {
  .portfolio-wrapper-3 .project-image {
    margin-left: 0;
  }
}

.portfolio-wrapper-3 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.portfolio-section-2
  .swiper-slide.swiper-slide-active
  .portfolio-single-items
  .portfolio-image
  .portfolio-content {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.portfolio-single-items {
  margin-top: 30px;
  overflow: hidden;
}

.portfolio-single-items .portfolio-image {
  height: 402px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.portfolio-single-items .portfolio-image .portfolio-content {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  padding: 30px;
  background-color: var(--black);
  bottom: -150px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.portfolio-single-items .portfolio-image .portfolio-content h3 {
  margin-bottom: 10px;
}

.portfolio-single-items .portfolio-image .portfolio-content h3 a {
  color: var(--white);
}

.portfolio-single-items .portfolio-image .portfolio-content h3 a:hover {
  color: var(--theme);
}

.portfolio-single-items .portfolio-image .portfolio-content p {
  color: var(--white);
}

.portfolio-single-items:hover .portfolio-image .portfolio-content {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.contact-wrapper .contact-left {
  padding: 60px;
  background-color: var(--bg2);
}

@media (max-width: 767px) {
  .contact-wrapper .contact-left {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-left {
    padding: 40px 30px;
  }
}

.contact-wrapper .contact-form-items .form-clt input,
.contact-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .contact-wrapper .contact-form-items .form-clt input,
  .contact-wrapper .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-form-items .form-clt input,
  .contact-wrapper .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}

.contact-wrapper .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: rgba(255, 255, 255, 0.7019607843);
}

.contact-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 75px;
}

.contact-wrapper .contact-image {
  width: 980px;
  height: 811px;
  border-radius: 5px;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-image {
    width: inherit;
    max-width: 900px;
    height: 650px;
  }
}

@media (max-width: 991px) {
  .contact-wrapper .contact-image {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .contact-wrapper .contact-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-image {
    height: 430px;
  }
}

.contact-wrapper-2 .section-title {
  margin-top: -12px;
}

.contact-wrapper-2 .contact-form-items .form-clt {
  position: relative;
}

.contact-wrapper-2 .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  border: none;
  color: var(--text);
  padding: 16px 30px;
  border-radius: 5px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .contact-wrapper-2 .contact-form-items .form-clt input,
  .contact-wrapper-2 .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper-2 .contact-form-items .form-clt input,
  .contact-wrapper-2 .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}

.contact-wrapper-2 .contact-form-items .form-clt input::placeholder,
.contact-wrapper-2 .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}

.contact-wrapper-2 .contact-form-items .form-clt textarea {
  padding-bottom: 175px;
}

.contact-wrapper-2 .contact-form-items .form-clt .icon {
  position: absolute;
  top: 16px;
  right: 30px;
  color: var(--black);
}

.contact-wrapper-2 .contact-form-items .form-clt .nice-select {
  background-color: var(--white);
  font-weight: 500;
  border: none;
  padding: 16px 30px;
}

@media (max-width: 767px) {
  .contact-wrapper-2 .contact-form-items .form-clt .nice-select {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper-2 .contact-form-items .form-clt .nice-select {
    padding: 12px 18px;
  }
}

.contact-wrapper-2 .contact-form-items .form-clt .nice-select span {
  color: var(--text);
}

.contact-wrapper-2 .contact-form-items .form-clt .nice-select::after {
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  right: 30px;
}

.contact-wrapper-2
  .contact-form-items
  .form-clt
  .nice-select
  .option.selected.focus {
  background: transparent;
  color: var(--white);
}

.contact-wrapper-2 .contact-form-items .form-clt .nice-select .list {
  background-color: var(--theme);
  color: var(--white);
}

.contact-info-wrapper {
  background-color: var(--bg);
}

.contact-info-wrapper .google-map {
  margin-bottom: -9px;
}

.contact-info-wrapper .google-map iframe {
  width: 100%;
  height: 560px;
}

.contact-info-wrapper .contact-info-content {
  padding: 40px;
}

.contact-info-wrapper .contact-info-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info-wrapper .contact-info-content .contact-info-area {
  margin-top: 40px;
}

.contact-info-wrapper
  .contact-info-content
  .contact-info-area
  .contact-info-items
  .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background-color: rgba(166, 161, 130, 0.1);
  color: var(--theme);
  text-align: center;
}

.contact-info-wrapper
  .contact-info-content
  .contact-info-area
  .contact-info-items
  .content {
  margin-top: 20px;
}

.contact-info-wrapper
  .contact-info-content
  .contact-info-area
  .contact-info-items
  .content
  h3 {
  font-weight: 600;
}

.contact-info-wrapper
  .contact-info-content
  .contact-info-area
  .contact-info-items
  .content
  h6 {
  font-weight: 400;
  color: var(--text);
}

.contact-info-wrapper
  .contact-info-content
  .contact-info-area
  .contact-info-items
  .content
  h6
  a {
  color: var(--text);
}

@media (max-width: 1399px) {
  .contact-section-4 {
    padding-top: 40px;
  }
}

@media (max-width: 1199px) {
  .contact-section-4 {
    padding-top: 20px;
  }
}

@media (max-width: 991px) {
  .contact-section-4 {
    margin-top: -40px;
  }
}

.contact-wrapper-3 {
  background-image: url(../img/contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 80px 0;
  border-radius: 5px;
}

.contact-wrapper-3 .contact-content {
  background-color: var(--white);
  border-radius: 0 0 5px 0;
  padding: 40px;
  padding-left: 0;
}

.contact-wrapper-3 .contact-content .contact-form-items .form-clt {
  position: relative;
}

.contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--text);
  padding: 16px 20px;
  border-radius: 5px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}

.contact-wrapper-3
  .contact-content
  .contact-form-items
  .form-clt
  input::placeholder,
.contact-wrapper-3
  .contact-content
  .contact-form-items
  .form-clt
  textarea::placeholder {
  color: var(--text);
}

.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 115px;
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}

.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: 600;
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 40px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input
  input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  padding: 18px 20px;
  width: 100%;
  border-radius: 5px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input
  input::placeholder {
  color: var(--white);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input
  .newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 64px;
  line-height: 60px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input.style-two {
  position: relative;
  margin-top: 40px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input.style-two
  input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7019607843);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input.style-two
  input::placeholder {
  color: var(--white);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input.style-two
  .newsletter-btn {
  border-radius: 0 5px 5px 0;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input.style-three
  input {
  background-color: var(--black);
  border-radius: 0;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input.style-three
  .newsletter-btn {
  border-radius: 0;
  color: var(--black);
  font-size: 18px;
  top: 5px;
  right: 5px;
  height: 54px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  gap: 10px;
  margin-top: 40px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  display: inline-block;
  background-color: #0d0d0d;
  color: rgba(255, 255, 255, 0.7019607843);
  transition: all 0.4s ease-in-out;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .social-icon
  a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area
  .contact-items {
  display: flex;
  gap: 20px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area
  .contact-items:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area
  .contact-items
  .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--theme);
  color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 50%;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area
  .contact-items
  .content {
  flex-basis: 79%;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area
  .contact-items
  .content
  h4 {
  color: var(--white);
  font-weight: 600;
  margin-top: 5px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area
  .contact-items
  .content
  h4
  a {
  color: var(--white);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-items:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-items
  .icon {
  font-size: 20px;
  color: var(--theme);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-items
  .content
  p {
  color: var(--white);
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-items
  .content
  h6 {
  font-size: 16px;
  font-weight: 400;
}

.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-items
  .content
  h6
  a {
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .list-items li {
  text-transform: capitalize;
}

.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 16px;
  color: var(--white);
  position: relative;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background-color: var(--theme);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover {
  padding-left: 20px;
  color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.footer-widgets-wrapper.style-2 .single-footer-widget {
  margin-top: 30px;
}

.footer-widgets-wrapper.style-2
  .single-footer-widget
  .footer-content
  .social-icon
  a {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.footer-widgets-wrapper.style-2
  .single-footer-widget
  .footer-content
  .social-icon
  a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li i {
  margin-right: 10px;
  color: var(--theme);
}

.footer-bottom {
  padding: 30px 0;
  position: relative;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.0509803922);
}

@media (max-width: 575px) {
  .footer-bottom {
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
    margin-top: 30px;
  }
}

.footer-bottom .footer-wrapper p {
  color: rgba(255, 255, 255, 0.7019607843);
}

.footer-bottom .footer-wrapper p a {
  color: rgba(255, 255, 255, 0.7019607843);
}

.footer-bottom .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 575px) {
  .footer-bottom .footer-wrapper .footer-menu {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

.footer-bottom .footer-wrapper .footer-menu li a {
  color: rgba(255, 255, 255, 0.7019607843);
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.footer-bottom .footer-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
}

.footer-bottom .footer-wrapper.border-style {
  border-top: 1px solid var(--text) !important;
}

.footer-bottom.style-2 {
  background-color: transparent;
  padding: 0;
  position: relative;
  z-index: 9;
  margin-top: -5px;
}

@media (max-width: 991px) {
  .footer-bottom.style-2 {
    margin-top: -35px;
  }
}

.footer-bottom.style-2 .footer-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}

.footer-section {
  position: relative;
  overflow: hidden;
}

.footer-section .shape-img {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.2;
}

.footer-section .shape-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}

.footer-section .footer-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer-section .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.footer-section .bg-shape img {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=main.css.map */

.gallery-top {
  display: grid;
  margin-top: 45px;
  gap: 27.17px;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.gallery-bottom {
  display: grid;
  margin-top: 45px;
  gap: 27.17px;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.gallery-top img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-bottom img {
  width: 100%;
  height: 233px;
  object-fit: cover;
  border-radius: 20px;
}

/* .gallery-img {
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15); 
  flex-shrink: 0;
} */

/* .gallery-img-1 {
  aspect-ratio: 1.49;
  width: 265px;
  border-radius: 0px 20px 20px 0;
}

.gallery-img-2,
.gallery-img-3,
.gallery-img-4 {
  aspect-ratio: 1.75;
  width: 311px;
} */

/* .gallery-img-5 {
  aspect-ratio: 0.74;
  width: 132px;
  border-radius: 20px 0px 0px 20px;
} */

/* .gallery-img-6 {
  aspect-ratio: 0.54;
  width: 96px;
  border-radius: 0px 20px 20px 0;
}

.gallery-img-7,
.gallery-img-8,
.gallery-img-9 {
  aspect-ratio: 1.76;
  width: 311px;
}

.gallery-img-10 {
  aspect-ratio: 1.7;
  width: 301px;
  border-radius: 20px 0px 0px 20px;
} */

.feature-card {
  border-radius: 20px;
  background-color: #f7f6e9;
  box-shadow: 15px 30px 55px rgba(77, 75, 63, 0.147);
  display: flex;
  margin-top: 13px;
  flex-grow: 1;
  padding: 30px 26px 35px 26px;
  align-items: stretch;
  gap: 3px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.5px;
  justify-content: center;
  /* width: 320px; */
  text-align: center;
  /* margin-bottom: 20px; */
  height: 100%;
  position: relative;
}

/* .feature-card.image-need{
  height: 360px;
} */
.feature-content {
  /* display: flex; */
  flex-direction: column;
  align-items: stretch;
  font-size: 24px;
  color: #000000;
  text-align: center;
}

.feature-details {
  display: flex;
  /* padding-left: 40px; */
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
}

.feature-number {
  border-radius: 31px;
  background-color: #ffe361;
  align-self: center;
  /* margin-left: 20px; */
  width: 60px;
  /* padding: 14px; */
  line-height: 60px;
  height: 60px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.feature-title {
  line-height: 1;
  /* margin-top: 20px; */
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.5px;
  /* margin-bottom: 25px; */
}

.feature-description {
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  margin-top: 26px;
  margin-bottom: 23px;
  letter-spacing: -0.5px;
  color: #000;
}

.feature-card.card1 {
  padding: 30px;
}

.feature-card.card1 .feature-title {
  margin-bottom: 25px;
}

.feature-note {
  color: #979797;
  font-size: 11px;
  align-self: center;
  margin-top: 10px;
  margin-left: 20px;
}

.feature-image-img {
  position: absolute;
  left: 12px;
  bottom: 0%;
}

.feature-image-img img {
  width: 100%;
}

.row-grid.mt-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 118px;
}

.about-wrapper-3.style-2 .about-content p.about-p {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  opacity: 60%;
  margin-bottom: 0;
  margin-top: 21px;
}

/* .d-flex.justify-content-center.gap-3.align-items-center.nocost {
  margin-top: 41px;
} */
.no-member {
  background-color: #f8f6e7;
  padding: 15px 13px 14px;
  border-radius: 14px;
  /* margin-top: 41px; */
  width: 239px;
  height: 45px;
  line-height: 100%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-member.hiden-cost img {
  width: 29.11px;
  margin-right: 14px;
}

.no-member img {
  width: 24px;
  margin-right: 14px;
}

section.service-section-2.fix.section-padding {
  padding: 50px 0 58px;
  display: flex;
  align-items: center;
}

/* .logo-icon img {
  margin-bottom: 53px;
} */

.btn-white {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 89px !important;
}

.btn-white a.white {
  background: #fff;
  padding: 22px 40px 21px;
  border-radius: 30px;
  width: 180px;
  height: 57.7px;
  text-align: center;
}

.btn-white a.white:hover {
  background: #000;
  color: #fce062;
}

.btn-white a.white.yellow {
  background: #ffe361;
  height: 60px;
  width: 120px;
  padding: 22px 30px 24px;
}

.btn-white a.white p {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  /* color: #000; */
  letter-spacing: -0.5px;
}

/* .btn-white a.white.yellow p{color: #000;} */
.btn-white a.white.yellow:hover {
  background: #000;
  color: #fce062;
}

.app-img img {
  /* position: absolute; */
  /* bottom: 0; */
  /* right: 35px; */
  width: 100%;
}

.app-img.homescreen img {
  /* width: 650px; */
}

.app-img-new img {
  position: absolute;
  bottom: 0;
  right: 33px;
  width: 572px;
}

.d-flex.align-items-center.white.opacity-low {
  gap: 9px;
  opacity: 40%;
  height: 57.53px;
  width: 188.82px;
  padding: 15px 21px;
  text-align: center;
}

.d-flex.align-items-center.white.opacity-low:hover {
  opacity: 40%;
  background: #fff;
  color: #000;
}

.site-footer {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px 30px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #000;
}

p.made-by-text {
  padding-bottom: 20px;
  text-align: right;
  margin-top: 0px;
}

.footer-links {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.footer-link {
  text-decoration: none;
  color: inherit;
  padding: 10px 10px;
}

.footer-contact {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  justify-content: center;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.contact-email {
  text-decoration: none;
  color: inherit;
}

.made-by {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  margin-top: 20px;
}

.footer-logo {
  width: 100px;
}

.made-by-text {
  font-size: 12px;
  font-weight: 500;
  color: #000;
}

.gap-100 {
  gap: 35px;
}

.section-padding.pb-0 {
  padding-top: 20px;
}

.section-padding.app-section {
  /* padding-bottom: 105px; */
  /* padding-top: 18px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

section.about-section.fix.section-padding {
  padding: 0px 0 85px;
  background: #fff;
  display: flex;
  align-items: center;
}

section.faq-section.section-padding.fix {
  /* display: flex; */
  /* margin-top: -40px; */
  /* align-items: center; */
}

a.theme-btn.padding-style.d-xs-none.wow.visible.fadeInUp {
  width: 212px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 8.16px;
  justify-content: center;
  margin: 0 auto;
  /* padding-bottom: 0; */
}
.mean-container .mean-nav ul li.mean-last a {
  padding-bottom: 0;
}

a.theme-btn.padding-style.d-xs-none.wow.visible.fadeInUp:hover {
  background: #000;
  color: #ffe361;
}

a.theme-btn.padding-style.d-xs-none.wow.visible.fadeInUp:hover svg g {
  opacity: 1;
}

a.theme-btn.padding-style.d-xs-none.wow.visible.fadeInUp:hover svg path {
  stroke: #ffe361;
}

a.theme-btn.padding-style.d-xs-none.wow.visible.fadeInUp:hover svg circle {
  stroke: #ffe361;
}

a.search-trigger.search-icon.d-xs-none {
  font-size: 16px;
  font-weight: 600;
  line-height: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

/* .d-flex.justify-content-between.align-items-center.discover-btn {
  width: 80%;
} */

h2.splt-txt.wow.words.chars.splitting.animated.animated {
  letter-spacing: -1.5px;
  line-height: 60px;
}

a.theme-btn.padding-style.register-btn {
  /* width: 209px; */
  /* height: 53px; */
  padding: 20px 35px 20px 35px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 14px;
  /* margin-top: 30px; */
}

a.theme-btn.padding-style.register-btn:hover {
  background: #000;
  color: #ffe361;
}

.col-xl-4.col-lg-4.col-md-6.wow.fadeInUp.define-width {
  width: 567px;
  /* height: 509px; */
}

a.search-trigger.search-icon.d-xs-none:hover svg path {
  stroke: #ffe361;
  stroke-width: 2px;
}

a.search-trigger.search-icon.d-xs-none:hover {
  color: #ffe361;
}

.credt-bold {
  font-weight: 700;
  color: #232328;
}

/* .cta-video-wrapper.bg-cover.application{height: 628px;} */
.cta-video-wrapper.bg-cover {
  /* margin: 0 80px; */
  /* height: 521px; */
  /* width: 100%; */
  /* z-index: 2; */
  /* grid-column-gap: 25px; */
  /* grid-row-gap: 25px; */
  /* background-image: linear-gradient(168deg, #e4e4e4 5.28%, #c9c7ca); */
  /* border-radius: 30px; */
  /* justify-content: space-between; */
  /* display: flex; */
  /* position: relative; */
  /* overflow: hidden; */
}

.cta-video-wrapper.bg-cover1.insta-img {
  /* margin: 0 80px; */
  /* height: 408px; */
  margin-bottom: 20px;
  margin-top: 33px;
}

.cta-video-wrapper.bg-cover1.insta-img {
  /* height: 408px; */
}

.cta-video-wrapper.bg-cover1 .app-img-new img {
  right: 90px;
  width: 417px;
}

/* .last-section {
  display: flex!important;
  align-items: center;
} */
.fp-watermark {
  display: none !important;
}

.section-padding.pb-0.insta-section {
  width: 100%;
}

/* .container{
  max-width: 1320px;
} */

.cta-video-wrapper.bg-cover.m-0.border-radius-none.new3 {
  padding: 48px 0px 0 0px;
  /* height: 100svh; */
  /* display: flex;
  align-items: center; */
}

h2.app-page-heading {
  font-size: 45px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}

p.app-page-des {
  color: #000;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 60%;
}

/* .btn-white.inner-page-app.mt-0.justify-content-start {
  margin-bottom: 44px;
} */

.btn-white.inner-page-app.mt-0.justify-content-start a {
  display: flex;
  text-align: left;
  align-items: center;
  padding: 17px 16px 21px;
  gap: 6px;
  opacity: 1;
  width: 164px;
  height: 58px;
}

.btn-white.inner-page-app.mt-0.justify-content-start p {
  font-size: 12px;
  line-height: 16px;
}

.about-section.fix.section-padding.pricing-padding {
  margin-bottom: 60px;
}

.btn-white.inner-page-app.mt-0.justify-content-start a.white {
  padding: 20px 26px 22px;
}

.btn-white.inner-page-app.mt-0.justify-content-start a.white:hover {
  background: #000;
  color: #ffe361;
}

.btn-white.inner-page-app.mt-0.justify-content-start a.white:hover svg path {
  stroke: #ffe361;
}

.btn-white.inner-page-app.mt-0.justify-content-start a.white:hover g {
  opacity: 1;
}

.section-padding.app-section.pb-82 {
  padding-bottom: 60px;
}

.header-main .main-menu ul li.active a {
  color: #ffd825;
}

/* .line-bg{
  padding: 0px 80px 0px;
} */
.site-footer.footer-inner {
  padding: 38px 80px 69px;
}

.heading-prici h4 {
  box-shadow: 0px 4px 4px 0px #cfc5c536;
  background: #f8f6e7;
  width: 161px;
  height: 57px;
  border-radius: 30px;
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
  padding: 18px 30px;
  margin-bottom: 26px !important;
}

p.breakdown-cost {
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  color: #000 !important;
  text-align: left;
  margin-bottom: 34px;
  opacity: 60%;
}

.service-box-items.style-2.opacity-100 {
  padding: 35px 48px 0;
}

h4.splt-txt.wow.words.chars.splitting.animated.text-left.animated {
  text-align: left;
  margin-bottom: 30px;
}

.d-flex.justify-content-between.align-items-center.table-structu {
  margin-bottom: 23px;
}

.d-flex.justify-content-between.align-items-center.table-structu h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  opacity: 60%;
  margin-bottom: 0;
}

.d-flex.justify-content-between.align-items-center.table-structu h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  opacity: 60%;
}

.col-xl-4.col-lg-4.col-md-6.wow.fadeInUp.define-width-price {
  width: 719px;
  height: 536px;
}

.border-right {
  border-right: 1px solid #979797;
  padding: 0 24px 0px 0px;
}

.total-btn {
  width: 280px;
  height: 110px;
  background: #ffe361;
  border-radius: 30px;
  padding: 25px 23px 23px 40px;
  margin-top: 7px;
  margin-bottom: 27px;
}

.service-box-items.style-2.opacity-100 .total-btn p {
  text-align: left;
  opacity: 60%;
  font-size: 18px;
  font-weight: 500;
}

.service-box-items.style-2.opacity-100 .total-btn h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  text-align: right;
}

.service-box-items.style-2.opacity-100 .total-btn h2 small {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.service-box-items.style-2.opacity-100 .total-btn h2 span {
  font-size: 25px;
  font-weight: 600;
}

.service-box-items.style-2.opacity-100
  .service-box-items.style-2
  .content
  h4
  a {
  text-align: left;
}

.service-section-2.fix.section-padding.pricing-sec {
  padding: 102px 0 103px;
  margin-bottom: 60px;
  margin-top: 85px;
}

section.properties-section.section-padding.prop {
  margin-bottom: 60px;
}

.feature-card.bg-none {
  background: none;
  box-shadow: none;
}

.feature-card.bg-none .feature-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  opacity: 60%;
  margin-bottom: 11px;
}

.feature-card.bg-none .feature-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
  opacity: 60%;
  margin: 0;
}

section.about-section.fix.section-padding.pricing-padding.bg-white {
  background: #fff;
}

.about-section.fix.section-padding.pricing-padding {
  padding-bottom: 33px;
  padding-top: 92px;
  background: linear-gradient(0deg, #f7f6e9 47.95%, #ffffff 119.86%);
}

.about-section.fix.section-padding.pricing-padding .about-wrapper-3.style-2 .about-content .margin-75.faq-para {
    padding-bottom: 35px;
}

.about-section.fix.section-padding.pricing-padding
  .about-wrapper-3.style-2
  .about-content
  p.about-p {
  padding-bottom: 0px;
  margin-bottom: 0;
}

.about-section.fix.section-padding.pricing-padding .section-title {
  margin-bottom: 9px;
}

.input-serach {
  position: relative;
}

.input-serach img {
  position: absolute;
  top: 10px;
  left: 20px;
}

.input-serach input {
  width: 532px;
  height: 50px;
  border-radius: 30px;
  border: 1px solid #00000033;
  outline: none;
  padding-left: 66px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 12px;
}

.select-div-item select {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: 1px solid #00000033;
  appearance: none;
  outline: none;
  color: #808080;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 15px;
}

.filter-img {
  text-align: right;
}

select:not(:-internal-list-box):not([multiple])::picker {
  color: #000 !important;
}

.select-div-item img {
  position: absolute;
  right: 30px;
  top: 10px;
}

.about-section.fix.section-padding.properties-padding {
  padding-bottom: 23px;
  padding-top: 41px;
}

.abc-gradient.padding-botm {
  padding-bottom: 66.71px;
}

.row.grid-proprty {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 41px;
}

.properties-div {
  width: 100%;
  margin-bottom: 60px;
  padding: 0;
}

.properties-section.section-padding {
  background: #f7f6e9;
  padding: 79px 0 43px;
}

.properties-sec img {
  border-radius: 20px 20px 0px 0px;
  height: auto;
  object-fit: cover;
}

.user-profile {
  position: relative;
  text-align: center;
}

.user-profile img {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 60px;
  transform: translate(-32px, 26px);
}

.user-text {
  background: #fff;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 64px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 20px;
  padding-top: 24px;
  width: 100%;
}

.user-text .d-flex.align-items-center span {
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -0.5px;
  color: #000;
  margin-left: 5px;
}

a.theme-btn.padding-style.wow.fadeInUp.bg-black.loadmore {
  width: 192px;
  border-radius: 30px;
  font-weight: 600;
}

.marquee {
  overflow-x: clip;
  white-space: nowrap;
  position: relative;
  width: 100%;
  margin-bottom: 16.3px;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 27.17px;
  /* padding: 12vh 0; */
  will-change: transform;
}

.marquee-inner img {
  height: 150px;
  transition: transform 0.5s;
  flex-shrink: 0;
  width: 250px;
  border-radius: 20px;
  object-fit: cover;
}

.marquee-inner img:hover {
  transform: scale(1.03);
}

.marquee-inner1 {
  display: flex;
  align-items: center;
  gap: 27.17px;
  /* padding: 16px 0; */
  will-change: transform;
}

.marquee-inner1 img {
  height: 150px;
  transition: transform 0.5s;
  flex-shrink: 0;
  width: 250px;
  border-radius: 20px;
  object-fit: cover;
}

.marquee-inner1 img:hover {
  transform: scale(1.03);
}

.marquee-inner2 {
  display: flex;
  align-items: center;
  gap: 27.17px;
  /* padding: 12vh 0; */
  will-change: transform;
}

.marquee-inner2 img {
  height: auto;
  transition: transform 0.5s;
  flex-shrink: 0;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.marquee-inner2 img:hover {
  transform: scale(1.03);
}

.marquee-inner3 {
  display: flex;
  align-items: center;
  gap: 27.17px;
  padding: 16px 0;
  will-change: transform;
}

.marquee-inner3 img {
  height: auto;
  transition: transform 0.5s;
  flex-shrink: 0;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.marquee-inner3 img:hover {
  transform: scale(1.03);
}

/* .marquee-wrapper {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
}

.marquee-inner1 {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.marquee-inner1 span {
  display: inline-block;
  padding: 0 50px;
  font-size: 18px;
} */

.about-section.fix.section-padding.pricing-padding
  .about-wrapper-3.style-2
  .about-content
  p.margin-75 {
  padding-bottom: 75px;
}

section.about-section.pb-0.fix.pricing-padding {
  padding-top: 20px;
  background: linear-gradient(0deg, #f7f6e9 47.95%, #ffffff 119.86%);
}

section.faq-section.section-padding.section-bg.fix.bg-white {
  padding: 63px 235px 79px;
}

section.faq-section.section-padding.fix.bg-yellow {
  padding: 63px 235px 79px;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button1.bg-none {
  background-color: #f7f6e9;
  box-shadow: none;
}

.faq-wrapper .accordion-item .accordion-collapse .accordion-body.bg-none {
  background-color: #f7f6e9;
  box-shadow: none;
}

.accordion-body .d-flex.align-items-center.gap-61 {
  gap: 50px;
}
.border-btm-footer{
      height: 30px;
    border: 1px solid #d8d8d8;
    width: 1px;
}
.faq-wrapper .accordion-item .accordion-collapse .accordion-body h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.faq-wrapper .accordion-item .accordion-collapse .accordion-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  opacity: 80%;
  margin-bottom: 30px;
  padding-bottom: 24px;
}

section.faq-section.section-padding.section-bg.fix.bg-white
  .faq-wrapper
  .accordion-item
  .accordion-header
  .accordion-button1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0;
  padding: 0px 30px 48px;
      display: flex;
    line-height: 33px;
}
.service-box-items.style-2 .content h4 a span {
    border-bottom: 3px solid #000;
}
section.faq-section.section-padding.fix.bg-yellow
  .faq-wrapper
  .accordion-item
  .accordion-header
  .accordion-button1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0;
  padding: 0px 30px 48px;
}

section.faq-section.section-padding.section-bg.fix.bg-white
  .faq-wrapper
  .accordion-item
  .accordion-header
  .accordion-button1
  span {
  margin-right: 20px;
}

section.faq-section.section-padding.fix.bg-yellow
  .faq-wrapper
  .accordion-item
  .accordion-header
  .accordion-button1
  span {
  margin-right: 20px;
}

section.faq-section.section-padding.fix.bg-yellow
  .accordion-item:last-of-type
  .accordion-collapse {
  background-color: #f7f6e9;
}

.exchange-offer-section {
  background: #fff;
  width: 559px;
  height: 457px;
  opacity: 90%;
  border-radius: 20px;
  box-shadow: 15px 20px 40px 0px #4d4b3f33;
  padding: 40px 27px 40px;
}

.coin-sec.d-flex.align-items-start {
  margin-bottom: 52px;
  gap: 27px;
}

.splt-txt.wow.heading-exchange {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 60px;
}

.theme-btn.padding-style.wow.fadeInUp.bg-black:hover {
  background-color: #ffe361 !important;
  color: #000;
}

.service-section-2.fix.section-padding.pricing-sec.exchange-sec {
  margin-bottom: 60px;
  padding: 52px 72px 79px;
}

.coin-sec.d-flex.align-items-start h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.coin-sec.d-flex.align-items-start p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.exchange-para p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  opacity: 60%;
  padding-bottom: 28px;
  padding-top: 16px;
  color: #000;
}

.credit-trext {
  padding-bottom: 30px;
}

.credit-trext h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  opacity: 60%;
  margin-bottom: 5px;
}

.credit-trext p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  opacity: 60%;
  width: 345px;
  text-align: center;
  margin: 0 auto;
}

.section-title.how-it-works-sec {
  margin-bottom: 79px;
}

.credit-img img {
  margin-bottom: 10px;
}

section.about-section.fix.section-padding.exchange-div {
  padding-bottom: 52px;
  padding-top: 53px;
}

.path-img img {
  position: absolute;
  width: 336px;
  overflow: hidden;
  z-index: -1;
}

.path-img img.path3 {
  position: absolute;
  width: 336px;
  overflow: hidden;
  z-index: -1;
  left: -28%;
}

.path-img img.path4 {
  left: -52%;
  bottom: -70px;
  /* transform: rotate(352deg); */
}

.cookie-popup__block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 25px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 40px;
  font-size: 14px;
  line-height: 18px;
  display: flex;
}

.cookie-popup__icon {
  min-width: 32px;
  max-width: 32px;
}

.cookie-popup__text {
  margin-right: auto;
}

.cookie-popup__buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  display: flex;
}

.cookie-popup__link {
  color: #ffe361;
  white-space: nowrap;
  cursor: pointer;
  background-color: #0000;
  border-radius: 20px;
  padding: 10px 14px;
  transition: all 15ms ease-in;
}

.cookie-popup__link:hover {
  background-color: #ffe361;
  color: #000;
}

.cookie-popup__link.grey {
  color: #fff9;
}

.cookie-popup__link.grey:hover {
  color: #000;
}

.cookie-popup {
  z-index: 200;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
}

.btn-white.justify-content-start {
  margin-bottom: 0;
}

.confidenti-head {
  padding: 0px 0 90px;
}

.confidenti-head h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
}

.confidenti-text p span {
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  opacity: 80%;
}

.confidenti-text p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  opacity: 80%;
  margin-bottom: 24px;
}

.confidenti-text ul {
  list-style-type: disc;
  padding-left: 28px;
  margin-bottom: 24px;
  color: #000;
  opacity: 80%;
}

section.hero-section.hero-4 {
  /* // background: linear-gradient(0deg, #F7F6E9 47.95%, #FFFFFF 119.86%); */
  height: 100%;
}

.section-padding.pb-0.insta-section {
  padding-top: 0;
}
#mobile-menu ul li a.search-trigger.search-icon.d-xs-none {
  display: none;
}
#mobile-menu ul li a.theme-btn.padding-style.d-xs-none.wow.visible.fadeInUp {
  display: none;
}

@media (max-width: 767px) {
  .header-right.d-flex.justify-content-end.align-items-center
    a.search-trigger.search-icon.d-xs-none {
    display: none;
  }

  .section-padding.pb-0.insta-section {
    padding-top: 40px;
  }

  .header-right.d-flex.justify-content-end.align-items-center
    a.theme-btn.padding-style.d-xs-none.wow.visible.fadeInUp {
    display: none;
  }
}

.fp-section {
  height: 100% !important;
}

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
  display: none;
}

.about-content.text-center.works-flow {
  z-index: 9999;
  position: relative;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");

/* Chatbot */
.botIcon {
  bottom: 65px;
  right: 60px;
  position: fixed;
  z-index: 9999;
}

.iconInner {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: #000;
  background-position: 50%;
  background-size: 300%;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.7em;
  height: 2em;
  justify-content: center;
  width: 2em;
}

.botSubject,
.messages,
.showBotSubject .botIconContainer,
.showMessenger .botIconContainer {
  display: none;
}

.botIcon .Messages,
.botIcon .Messages_list {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.chat_close_icon {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 12px;
  z-index: 9;
}

.chat_on {
  background-color: #8a57cf;
  bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  color: #fff;
  cursor: pointer;
  display: block;
  height: 45px;
  padding: 9px;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 45px;
  z-index: 10;
}

.chat_on_icon {
  color: #fff;
  font-size: 25px;
  text-align: center;
}

.botIcon .Layout {
  right: 2%;
  -webkit-animation: appear 0.15s cubic-bezier(0.25, 0.25, 0.5, 1.1);
  -ms-animation: appear 0.15s cubic-bezier(0.25, 0.25, 0.5, 1.1);
  animation: appear 0.15s cubic-bezier(0.25, 0.25, 0.5, 1.1);
  -webkit-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  background-color: rgb(63, 81, 181);
  bottom: 20px;
  border-radius: 10px;
  box-shadow: 5px 0 20px 5px rgba(0, 0, 0, 0.1);
  box-sizing: content-box !important;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  max-height: 30px;
  max-width: 300px;
  min-width: 50px;
  opacity: 0;
  pointer-events: auto;
  position: fixed;
  -webkit-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    border-radius 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
    background-color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
    color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s;
  -ms-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    border-radius 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
    background-color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
    color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s;
  transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1),
    border-radius 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
    background-color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s,
    color 50ms cubic-bezier(0.25, 0.25, 0.5, 1) 0.15s;
  z-index: 999999999;
}

.botIcon .Layout-open {
  border-radius: 10px;
  color: #fff;
  height: 500px;
  max-height: 500px;
  max-width: 300px;
  overflow: hidden;
  -webkit-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    border-radius 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
    background-color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
    color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1);
  -ms-transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    border-radius 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
    background-color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
    color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1);
  transition: right 0.1s cubic-bezier(0.25, 0.25, 0.5, 1),
    bottom 0.1s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-width 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    max-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    min-height 0.2s cubic-bezier(0.25, 0.25, 0.5, 1.1),
    border-radius 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
    background-color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1),
    color 0ms cubic-bezier(0.25, 0.25, 0.5, 1.1);
  width: 100%;
}

.botIcon .Layout-expand {
  display: none;
  height: 400px;
  max-height: 100vh;
  min-height: 300px;
}

.showBotSubject.botIcon .Layout-expand {
  display: block;
}

.botIcon .Layout-mobile {
  bottom: 10px;
}

.botIcon .Layout-mobile.Layout-open {
  min-width: calc(100% - 20px);
  width: calc(100% - 20px);
}

.botIcon .Layout-mobile.Layout-expand {
  border-radius: 0 !important;
  bottom: 0;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
}

.botIcon .Messenger_messenger {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.botIcon .Messenger_header,
.botIcon .Messenger_messenger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.botIcon .Messenger_header {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  color: rgb(255, 255, 255);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 40px;
  padding-left: 10px;
  padding-right: 40px;
}

.botIcon .Messenger_header h4 {
  color: #fff;
  -webkit-animation: slidein 0.15s 0.3s;
  -ms-animation: slidein 0.15s 0.3s;
  animation: slidein 0.15s 0.3s;
  -webkit-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  font-size: 16px;
  opacity: 0;
}

.botIcon .Messenger_prompt {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.botIcon .Messenger_content {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 80px;
}

.botIcon .Messages {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.botIcon .Input {
  background-color: #fff;
  border-top: 1px solid #e6ebea;
  color: #96aab4;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 15px;
  padding-top: 17px;
  position: relative;
  width: 100%;
}

.botIcon .Input-blank .Input_field {
  max-height: 20px;
}

.botIcon .Input_field {
  background-color: transparent;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 45px;
  resize: none;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px !important;
}

.botIcon .Input_button-emoji {
  right: 45px;
}

.botIcon .Input_button {
  background-color: transparent;
  border: none;
  bottom: 15px;
  cursor: pointer;
  height: 25px;
  outline: none;
  padding: 0;
  position: absolute;
  width: 25px;
}

.botIcon .Input_button-send {
  right: 15px;
}

.botIcon .Input-emoji .Input_button-emoji .Icon,
.botIcon .Input_button:hover .Icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.botIcon .Input-emoji .Input_button-emoji .Icon path,
.botIcon .Input_button:hover .Icon path {
  fill: #2c2c46;
}

.Icon svg {
  height: auto;
  width: 100%;
}

.msg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.msg.user {
  -webkit-box-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.msg + .msg {
  margin-top: 15px;
}

span.responsText {
  color: #000;
  display: inline-block;
  margin-left: 10px;
  vertical-align: top;
  max-width: calc(100% - 50px);
}

.msg.user span.responsText {
  margin-left: 0;
  margin-right: 10px;
}

span.avtr {
  display: inline-block;
  width: 30px;
}

span.avtr figure {
  background-color: #ccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: block;
  margin: 0;
  padding-bottom: 100%;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes appear {
  0% {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes appear {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes slidein {
  0% {
    opacity: 0;
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slidein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media only screen and (max-width: 412px) {
  .botIcon .Layout-open {
    width: 250px;
  }
}

a.footer-link:hover {
  background: #000;
  color: #ffe361;
  padding: 10px 10px;
  border-radius: 30px;
}

.bg-white.new-sec-for-mobile {
  display: none;
}

section.slider.slick-initialized.slick-slider.slick-dotted {
  display: none;
}

.hide-on-desktop {
  display: none;
}

section.about-section.section-padding.exchange-div.position-relative {
  padding: 0;
}

.slider.hide-on-desktop {
  display: none;
}

.barcode-img.text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 316px;
}

.ant-drawer-body ul li a {
  display: block;
  /* float: left; */
  width: 100%;
  padding: 0px 0px 37px 0;
  margin: 0;
  text-align: left;
  color: #000000;
  /* border-top: 1px solid #e0e3ed; */
  text-decoration: none;
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", -apple-system, Roboto, Helvetica, sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.ant-drawer-body ul li a:hover {
  color: #ffe361;
}

span.anticon.anticon-close {
  font-size: 18px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background: #ffe361;
  text-align: center;
  line-height: 45px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
}

.ant-drawer-body ul li:first-child > a {
  /* border-top: 0; */
}

.col-lg-3.mt-5.mt-lg-0.d-xxl-none.d-lg-block {
  display: none !important;
}

.col-lg-3.mt-5.mt-lg-0.d-xxl-none.d-lg-block .filter-img img {
  display: none;
}

.line-bg img {
  width: 100%;
  padding: 0px 0px 30px;
}

.container-fluid {
  padding: 10px 81px 10px;
}
.web-wrapp {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-radius: 30px;
  justify-content: space-between;
  display: flex;
  position: relative;
  /* overflow: hidden; */
}

.faq-wrapper {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-radius: 30px;
  justify-content: flex-start;
  display: flex;
  position: relative;
  /* overflow: hidden; */
  margin-top: 20px;
}

.btn-white.justify-content-start.insta-follow {
  margin-bottom: 30px !important;
}

.section-padding {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: 20px;
  padding-right: 20px; */
  padding-top: 120px;
  padding-bottom: 200px;
  width: 100%;
}

section.faq-section.fix.vertical-scrolling {
  /* border-radius: 30px;  */
  padding-top: 25px;
  padding-bottom: 25px;
  /* max-width: 1320px; */
  margin-left: auto;
  margin-right: auto;
}

.logo-icon {
  background: #fff;
  width: max-content;
  padding: 20px 18px;
  border-radius: 27px;
  margin-bottom: 23px;
  box-shadow: 0px 4px 20px 0px #00000040;
  margin-bottom: 23px;
}

.section-padding.app-section.vertical-scrolling {
  padding-bottom: 105px;
}

.cta-video-wrapper.bg-cover1.insta-img {
  padding: 0px 80px 0px;

  position: relative;
  border-radius: 30px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  max-width: 825px;
  /* margin: 0 auto; */
  /* padding: 2rem 1rem; */
}

.hero-title {
  font-weight: 600;
  line-height: 118%;
  letter-spacing: -1.6px;
  position: relative;
}

.hero-subtitle {
  max-width: 435px;
}

.button-block {
  align-self: flex-end;
  align-self: flex-end;
  position: absolute;
  top: 48%;
  right: 9%;
}

.cta-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

section.about-section.section-padding.vertical-scrolling {
  padding-top: 10px;
  padding-bottom: 40px;
}

.about-wrapper-3.style-2 .about-content p.about-p {
  margin-bottom: 10px;
}
p.mt-3.about-p.margin-75.mt-md-0.wow.fadeInUp.faq-des {
  margin-bottom: 35px;
  margin-top: 17px !important;
}
.section-title.about-heading {
  padding-bottom: 11px;
  margin-bottom: 0;
}

.row-grid.mt-1 {
  margin-bottom: 6%;
  margin-top: 3%;

}

.service-section-2.services-new.vertical-scrolling {
  padding-top: 30px;
  padding-bottom: 30px;
}

.service-new-section {
  margin: 0 auto;
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-radius: 30px;
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
}

.service-new-section .service-box-items.style-2 {
  padding: 35px 20px 0px;
}

.web-wrapp h2 {
  font-size: 50px;
}

.faq-content.text-center .section-title h2 {
  font-size: 54px;
  padding-bottom: 10px;
}

.faq-content.text-center p {
  font-size: 19px;
}

.faq-content.text-center small {
  font-size: 19px;
}

.faq-wrapper .row.justify-content-center {
  width: 100%;
}

.faq-wrapper .row.justify-content-center .col-lg-6.mt-5.mt-lg-0 {
  margin: 0 auto;
}

.main-container {
  display: flex;
  gap: 0;
  height: 472px;
}

/* elemets style */
.scroller {
  width: 400px;
  height: 100%;
  will-change: transform;
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  margin: 0 auto;
  list-style: none;
}

.tag-list li {
  padding: 10px;
  /* background: var(--clr-primary-400); */
  margin-bottom: 0;
  border-radius: 0.25rem;
  /* box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900); */
}

.tag-list li img {
  width: 100%;
}

.scroller__inner {
  width: 100%;
  white-space: nowrap;
  will-change: transform;
  gap: var(--gap);
}

/* edges mask */
.scroller[data-animated="true"] {
  overflow: hidden;
  /* -webkit-mask: linear-gradient(
    0deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  ); */
  /* mask: linear-gradient(0deg, transparent, white 20%, white 80%, transparent); */
}

.scroller[data-animated="true"] .scroller__inner {
  animation: scroll var(--_animation-duration, 15s)
    var(--_animation-direction, forwards) linear infinite;
}

/* direction */
.scroller[data-direction="up"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="down"] {
  --_animation-direction: forwards;
}

/* speed */
.scroller[data-speed="fast"] {
  --_animation-duration: 10s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 120s;
}

/* animation */
@keyframes scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - var(--gap) / 2));
  }
}

:root {
  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-primary-100: hsl(205, 15%, 58%);
  --clr-primary-400: hsl(215, 25%, 27%);
  --clr-primary-800: hsl(217, 33%, 17%);
  --clr-primary-900: hsl(218, 33%, 9%);
  --gap: 1rem;
}

.cta-video-wrapper.bg-cover1.insta-img {
  padding: 0px 70px 0px;
}
.swiper-pagination-bullet {
  background-color: black !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background-color: black !important;
  opacity: 1;
}
.cta-video-wrapper-2.bg-cover.application {
  padding: 89px 69px 0;
  border-radius: 30px;
}

.section-app-dash {
  padding: 55px 0;
}
.logo-black img {
  width: 50px;
}

.logo-black {
  background: #fff;
  width: fit-content;
  padding: 12px;
  border-radius: 15px;
  box-shadow: 0 4px 20px #00000052;
  margin-bottom: 23px;
}
.app-img-2.homescreen img {
  width: 100%;
  /* margin-bottom: -40px; */
}
.app-section-grid {
  display: grid;
  grid-template-columns: 39% 58%;
  gap: 3%;
  align-items: center;
}
.service-new-section {
  margin-bottom: 30px;
}
.pricing-app-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  justify-items: center;
  justify-content: center;
}
/* .app-new-images{  display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    justify-items: center;
    justify-content: center;} */
.app-new-images img {
  width: 100%;
  margin-bottom: -124px;
  margin-top: -75px;
}
.btn-white.inner-page-app.mt-0.justify-content-start.app-sec-kaza-btn.btn-app-page{margin-bottom: 0!important;}
@media (max-width: 767px) {
  .cta-video-wrapper-2.bg-cover.application {
    padding: 38px 21px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1359px) {
  /* .hero-4 .hero-content h1 {
        font-size: 40px;
    } */
  /* a.theme-btn.padding-style.register-btn{margin-top: 7%   ;} */
  .row-grid.mt-1 {
    gap: 66px;
  }

  .gallery-image__img {
    padding-top: 33vh;
    max-width: 26vh;
  }

  .feature-image_more {
    height: 152px;
  }

  .feature-image_more .image-spacing {
    margin-top: 35px;
  }

  .app-img.homescreen img {
    /* width: 585px; */
  }

  /* .cta-video-wrapper.bg-cover1.insta-img {
    height: 500px;
} */
}

@media (min-width: 1200px) and (max-width: 1359px) {
  /* .hero-4 .hero-content h1 {
        font-size: 40px;
    } */
  /* a.theme-btn.padding-style.register-btn{margin-top: 7%   ;} */
  .row-grid.mt-1 {
    gap: 66px;
  }

  .gallery-image__img {
    padding-top: 33vh;
    max-width: 26vh;
  }

  .feature-image_more {
    height: 152px;
  }

  .feature-image_more .image-spacing {
    margin-top: 35px;
  }

  /* .app-img.homescreen img {
    width: 585px;
} */
  /* .cta-video-wrapper.bg-cover1.insta-img {
    height: 500px;
} */

  /* .container-fluid {
    padding: 17px 20px 17px;
  } */

  .logo-icon img {
    margin-bottom: 38px;
  }

  .cta-video-wrapper {
    padding: 40px 40px 0px;
  }

  .about-wrapper-3.style-2 .about-content p.about-p {
    margin-bottom: 20px;
  }

  .section-padding {
    padding-bottom: 80px;
  }
  
}

@media (min-width: 1281px) and (max-width: 1439px) {
  .feature-image_more .image-spacing {
    margin-top: 35px;
  }

  /* .hero-4 .hero-content h1 {
        font-size: 41px;
    } */
  /* a.theme-btn.padding-style.register-btn{margin-top: 7%   ;} */
  .row-grid.mt-1 {
    gap: 66px;
  }

  .gallery-image__img {
    padding-top: 33vh;
    max-width: 26vh;
  }

  .feature-image_more {
    height: 152px;
  }
}

@media (min-width: 1400px) and (max-width: 1450px) {
  /* a.theme-btn.padding-style.register-btn {
    width: 260px;
    font-size: 20px;
  } */


  .row-grid.mt-1 {
    margin-top: 5% !important;
    margin-bottom: 6%;
  }

  .cta-video-wrapper.bg-cover1.insta-img {
    /* height: 500px; */
    padding-top: 0;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1400px) {
  .feature-image_more {
    height: 152px;
  }

  .exchange-offer-section {
    padding: 40px 27px 40px;
    height: auto;
  }

  /* .coin-sec.d-flex.align-items-start{margin-bottom: 0;} */
  .about-content.text-center.works-flow
    .hide-on-mobile
    .col-lg-4
    img.small-size {
    width: 280px;
  }

  .gallery-image__img {
    padding-top: 33vh;
    max-width: 26vh;
  }

  /* .container-fluid {
    padding: 17px 20px 17px;
  } */

  .hero-content.d-flex.flex-column {
    width: 100%;
  }

  section.about-section.section-padding.vertical-scrolling {
    padding-bottom: 80px;
  }

  .about-wrapper-3.style-2 .about-content p.about-p {
    margin-bottom: 30px;
  }

  section.faq-section.fix.vertical-scrolling {
    padding-bottom: 80px;
  }

  .service-section-2.services-new.vertical-scrolling {
    padding-bottom: 0px;
  }
}

@media (max-width: 1025px) {
  /* .container-fluid {
    padding: 17px 20px 17px;
  } */
  .logo-black {
    /* margin: auto; */
    margin-bottom: 23px;
  }
  .row.grid-proprty {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    align-items: center;
    justify-content: center;
  }

  .input-serach input {
    width: 100%;
    padding-left: 50px;
    font-size: 13px;
  }

  .filter-img img {
    width: 45px;
    height: 45px;
  }

  .section-padding.app-section.vertical-scrolling {
    padding-bottom: 40px;
  }

  .properties-div {
    width: 100%;
    padding: 16px 35px;
    margin-bottom: 0px;
  }

  .user-text {
    width: 100%;
    justify-content: center;
  }

  /* .row.justify-content-end.mobile-view .col-lg-3.mt-5.mt-lg-0, .row.justify-content-end.mobile-view .col-lg-6.mt-5.mt-lg-0{margin-top: 20px!important;} */
  /* .col-lg-3.mt-5.mt-lg-0.date-div {
    display: none;
  } */

  .about-wrapper-3 .about-content {
    margin-left: 0;
  }

  .row.justify-content-end.mobile-view {
    display: flex;
    grid-template-columns: 70% 15% 15%;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .about-section.fix.section-padding.properties-padding {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  a.theme-btn.padding-style.wow.fadeInUp.bg-black.loadmore {
    margin-top: 30px;
  }

  .footer-links {
    /* flex-wrap: wrap;
    justify-content: center; */
    display: flex;
  }

  /* .footer-logo {
    margin: 0 auto;
  } */

  .footer-contact {
    flex-wrap: wrap;
  }

  .coin-sec.d-flex.align-items-start {
    margin-bottom: 21px;
  }

  .footer-links .d-flex.justify-content-around.gap-100 {
    flex-wrap: wrap;
    /* justify-content: center;
    display: flex; */
    gap: 20px;
    text-align: center;
  }

  p.made-by-text {
    text-align: center;
    margin-top: 40px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white {
    padding: 0 140px 40px!important;
    border-radius: 25px;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding .input-serach {
    display: block;
  }

  /* .hero-4 .hero-content h1 {
        font-size: 40px;
    } */
  .about-wrapper-3.style-2 .about-content p.about-p {
    padding-bottom: 0;
    font-size: 14px;
    /* width: 206px; */
  }

  .faq-img.text-center {
    text-align: right !important;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding
    .faq-img.text-center
    img {
    width: 321px;
    margin-left: 10%;
    margin-top: -10%;
  }

  .about-section.fix.section-padding.pricing-padding
    .about-wrapper-3.style-2
    .about-content
    p.margin-75 {
    padding-bottom: 35px;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding
    .col-lg-4.mt-5.mt-lg-0 {
    margin-top: 0 !important;
  }

  section.faq-section.section-padding.fix.bg-yellow {
      padding: 0 140px 40px!important;
    border-radius: 25px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1 {
    font-size: 30px;
    padding: 30px 6px 30px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1
    span
    img {
    width: 25px;
  }

  section.faq-section.section-padding.fix.bg-yellow
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1 {
    font-size: 30px;
    padding: 30px 6px 30px;
  }

  section.faq-section.section-padding.fix.bg-yellow
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1
    span
    img {
    width: 25px;
  }

  .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
    padding-left: 12px;
  }

  .faq-wrapper
    .accordion-item
    .accordion-collapse
    .accordion-body
    .d-flex.align-items-center.gap-61 {
    gap: 20px;
    align-items: flex-start !important;
  }

  .faq-wrapper
    .accordion-item
    .accordion-collapse
    .accordion-body
    .d-flex.align-items-center.gap-61
    img {
    width: 50px;
  }
  .d-flex.align-items-center.white.opacity-low {
    padding: 15px 13px;
  }
  .d-flex.align-items-center.white.opacity-low img {
    width: 20px;
  }
  /* section.faq-section.section-padding.section-bg.fix.bg-white.first-sect{margin-top: -21%;} */
  .app-img img {
    bottom: 0;
    right: 0px;
    width: 600px !important;
  }
.app-section-grid{align-items: end;}
  .app-img.homescreen img {
    position: unset;
    bottom: 0;
    right: 0px;
    width: 462px !important;
  }

  .cta-video-wrapper.bg-cover.m-0.border-radius-none {
    padding: 73px 22px 40px 22px;
    text-align: center;
    height: unset;
  }

  /* .hide-on-mobile{display: none!important;} */
  .barcode-img.text-center {
    width: 100%;
  }

  /* .barcode-img.text-center img { width: 100%;padding: 43px 83px;} */
  .bg-white.new-sec-for-mobile {
    display: none;
  }

  .bg-white.new-sec-for-mobile p.app-page-des {
    text-align: center;
    font-size: 18px;
  }

  .bg-white.new-sec-for-mobile
    .btn-white.inner-page-app.mt-0.justify-content-start
    a.white {
    background-color: #ffe361;
  }

  .bg-white.new-sec-for-mobile
    .btn-white.inner-page-app.mt-0.justify-content-start {
    justify-content: center !important;
  }

  .feature-card.bg-none {
    margin-bottom: 0px !important;
    padding: 0;
  }

  section.about-section.section-padding.vertical-scrolling {
    padding-bottom: 70px;
  }

  .col-xl-4.col-lg-4.col-md-6.wow.fadeInUp.define-width-price {
    height: unset;
  }

  .total-btn {
    width: 100%;
    padding: 13px 23px 13px 40px;
    height: unset;
  }

  p.breakdown-cost {
    border-bottom: 1px solid #979797;
    width: max-content;
    padding-bottom: 14px;
  }

  .border-right {
    border-right: none;
    padding: 0;
  }

  .about-section.fix.section-padding.pricing-padding {
    padding-top: 22px;
  }

  section.about-section.fix.section-padding.pricing-padding.bg-white {
    padding-bottom: 0%;
  }

  section.about-section.fix.section-padding.pricing-padding.pt-5 {
    padding: 20px;
  }

  .service-section-2.fix.section-padding.pricing-sec.exchange-sec {
    padding: 30px 15px 79px;
  }

  /* .feature-card.card1{padding: 0;} */
  .feature-image_more {
    height: 152px;
    margin-bottom: 20px;
  }

  .exchange-offer-section {
    /* width: 100%; */
    height: unset;
    padding: 40px 27px 40px;
  }

  .marquee {
    margin-bottom: 16.3px;
  }

  .marquee-inner {
    gap: 27.17px;
  }

  .hero-4 .hero-content {
    margin-top: 0;
  }

  .marquee-wrapper {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* .theme-btn.padding-style.wow.fadeInUp.bg-black {
    display: none;
  } */
  .header-main {
    padding-bottom: 0;
  }

  /* .d-flex.justify-content-between.align-items-center.discover-btn {
    width: 95%;
  } */

  .slick__slide .feature-card.card1 {
    padding: 10px;
  }

  .select-div-item select {
    width: 100%;
  }

  a.theme-btn.padding-style.wow.fadeInUp.bg-black.bottom-new {
    display: block;
    margin: 0 auto;
  }

  section.hero-section.hero-4 {
    padding-bottom: 40px;
  }

  .slick-slide {
    /* Opacity and scale down to place focus on active slide */
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    transform: scale(0.9);
    outline: none;
    /* Grab Hand Cursor */
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }

  /* Default Slick Slide ACTIVE
     Scale to full size and bring up opacity  */

  .slick-slide.slick-center {
    opacity: 0.95;
    transform: scale(1);
    cursor: pointer;
  }

  /* Add padding between slides
  */

  .slick-slider .slick-slide {
    padding: 0 15px;
  }

  /* Hide default slick prev - next text
     Still accessible.
  */
  .slick-arrow {
    font-size: 1px !important;
    color: transparent;
  }

  .slider .slick-arrow {
    position: absolute;
    background: #3c3b6e;
    opacity: 0.7;
    bottom: -40px;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
    padding: 0;
    overflow: hidden;
    font-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid #fff;
    border-radius: 0%;
    cursor: pointer;
    outline: none;
    transition: 0.25s;
  }

  .slider .slick-arrow:hover,
  .slider .slick-arrow:focus {
    border-color: white;
    color: #b22234;
    background: #b22234;
    opacity: 0.95;
  }

  .slider .slick-arrow:active {
    transform: translateY(-50%) scale(0.9);
  }

  .slider .slick-prev {
    right: 180px;
  }

  .slider .slick-next {
    right: 100px;
  }

  .slick-prev:before {
    content: "â†";
    color: white;
    font-size: 30px;
  }

  .slick-next:before {
    content: "â†’";
    color: white;
    font-size: 30px;
  }

  .slick-slide img {
    width: 188px;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 63px;
  }

  .slick__slide .credit-trext {
    text-align: center;
  }

  .slick__slide .credit-trext h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    opacity: 60%;
    margin-bottom: 24px;
  }

  .my-slider.slick-initialized .slick-slide p {
    color: #000;
  }

  /* Position Slick dots container down some */
  ul.slick-dots {
    margin-top: 40px;
  }

  .slick-dots button {
    background: transparent;
    /* color: white; */
    /* border: 1px solid white; */
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    /* padding-left: 10px; */
    cursor: pointer;
    opacity: 0.8;
    background: #000;
    width: 9px;
    height: 9px;
    line-height: 9px;
    border-radius: 26px;
  }

  .slick-dots > li {
    display: inline-block;

    margin: 12px;
  }

  .slick-dots > .slick-active {
    color: #b22234;
    font-weight: bold;
    /* background: blanchedalmond; */
  }

  .slick-dots {
    list-style: none;
    border-radius: 50%;
    transition: 0.2s;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    /* width: 90vw; */
    margin: 0 auto;
  }

  .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
  }

  .slick-dots li button {
    border: none;
    cursor: pointer;
    font-size: 0px;
    border: 1px solid #fff;
    box-shadow: 0 0 0 0 transparent;
    color: #000000;
    background-color: #00000000;
    transition: all 0.3s ease;
    opacity: 40%;
    border: 2px solid #000;
    height: 5px;
    width: 5px;
  }

  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover {
    opacity: 1;
    background: #3c3b6e;
  }

  .slick-dots li.slick-active button {
    background: #000;
    box-shadow: 0 0 0 1px #fff;
    opacity: 0.9;
  }

  .slick__slide .credit-trext p {
    font-size: 16px;
  }

  section.slider.slick-initialized.slick-slider.slick-dotted {
    display: block;
  }

  .hide-on-desktop {
    display: none;
  }

  .path-mob1 {
    position: absolute;
    top: -35%;
    z-index: -1;
    left: 0%;
  }

  .row-grid.mt-1 {
    gap: 35px;
    margin-bottom: 30px;
  }
  .exchnage-coin-2 p {
    padding-top: 9px;
    padding-bottom: 37px;
    color: #000;
    font-size: 14px;
  }
  .exchange-para p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
  }
  .splt-txt.wow.heading-exchange {
    font-size: 32px;
    line-height: 40px;
  }
  .credit-trext p {
    padding: 0 0px 0px;
    width: 100%;
  }
  .credit-trext {
    margin-bottom: 0;
  }
  .service-section-2.services-new.vertical-scrolling {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 40px;
  }

  .cta-video-wrapper {
    padding: 36px 36px 0px;
  }

  .path-mob1 img {
    width: 238px;
  }

  .path-mob3 {
    position: absolute;
    top: 44%;
    z-index: -1;
    right: 0%;
  }

  .path-mob3 img {
    width: 155px;
  }

  /* .my-slider{
    padding: 0 70px;
  } */
  .my-slider.slick-initialized .slick-slide {
    /* background-color: #b32532; */
    color: #fff;
    /* height: 200px; */
    opacity: 1;
    /* margin: 0 15px 0 0; */
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    text-align: center;
  }

  .feature-title {
    font-size: 18px;
  }

  .my-slider.slick-initialized.slick-slider.slick-dotted .slick-prev {
    display: none !important;
  }

  .my-slider.slick-initialized.slick-slider.slick-dotted .slick-next {
    display: none !important;
  }

  .my-slider.slick-initialized .slick-slide img {
    width: 100%;
  }

  .my-slider.slick-initialized .slick-slide .feature-card {
    display: block;
    padding: 20px 10px 1px 10px;
    box-shadow: none;
  }

  .my-slider.slick-initialized .slick-slide .feature-image-img {
    position: unset;
    margin-top: 10px;
  }

  .my-slider.slick-initialized .slick-dots {
    margin-top: 0px;
  }

  .service-box-items.style-2 .content h4 a {
    font-size: 32px;
    line-height: 40px;
  }

  .d-flex.justify-content-center.gap-3.align-items-center.nocost {
    flex-wrap: wrap;
    
  }


  /* .d-flex.justify-content-center.gap-3.align-items-center.nocost.mobile .no-member.hiden-cost {
    margin-top: 36px!important;
  } */

  /* .service-box-items.style-2 img {
    width: 100%;
  } */

  .section-padding.app-section {
    padding-bottom: 0;
    padding-top: 0;
    display: block;
    align-items: center;
    /* margin-top: -30px; */
    z-index: 0;
  }

  /* .cta-video-wrapper.bg-cover.application {
    border-radius: 30px;
    height: auto;
    margin: 0 10px;
    padding: 80px 0 40px;
  } */

  .logo-icon img {
    /* margin: 0 auto; */
    /* display: block;
    margin-bottom: 15px;
            margin-left: -15px; */
  }

  .credit-trext p {
    width: 70%;
  }

  .cta-video-wrapper.bg-cover.application h2 {
    font-size: 29px;
    line-height: 34px;
    text-align: left;
  }

  .btn-white a.white {
    padding: 22px 12px 21px;
  }

  .btn-white {
    margin-bottom: 20px;
  }

  .faq-section {
    padding: 80px 0 80px !important;
  }

  .fp-section {
    height: auto !important;
  }

  .faq-wrapper .faq-content p {
    margin-bottom: 40px;
  }

  section.service-section-2.fix.section-padding {
    margin-bottom: 40px;
  }

  a.theme-btn.padding-style.register-btn {
    margin-top: 30px;
  }

  .faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
    line-height: 22px;
    padding: 15px 15px 15px;
  }

  .cta-video-wrapper.bg-cover1.insta-img {
    height: auto;
    overflow-x: hidden;
  }

  .cta-video-wrapper.bg-cover1.insta-img .row {
    align-items: center;
  }

  section.about-section.fix.section-padding {
    padding-top: 0px;
  }

  .app-img-new img {
    position: unset;
  }

  /* .cta-video-wrapper.bg-cover1.insta-img {
    margin: 10px;
    padding: 88px 0;
    border-radius: 10px;
  } */

  .cta-video-wrapper.bg-cover1 .app-img-new img {
    width: 100%;
  }

  .cta-video-wrapper.bg-cover1.insta-img h2 {
    line-height: 50px;
    text-align: left;
  }

  .btn-white.justify-content-start {
    justify-content: start !important;
    margin-bottom: 20px;
  }

  section.about-section.fix1.section-padding.exchange-div.position-relative {
    padding-bottom: 16px;
    z-index: 9;
  }
  .cta-video-wrapper.bg-cover.m-0.border-radius-none.new3{
    padding: 5px 0px 0 0px;
  }

  .marquee-inner3 img {
    width: 30vw;
  }

  .marquee-inner2 img {
    width: 30vw;
  }

  .line-bg img {
    width: 100%;
  }

  .btn-white.mob-new {
    justify-content: center !important;
    margin-top: 25px;
  }

  .botIcon {
    bottom: 30px;
    right: 20px;
  }

  .cookie-popup__block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    flex-direction: column;
  }

  .cookie-popup {
    bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery {
    display: flex;
    gap: 20px;
  }

  .gallery-image__img {
    padding-top: 42vh;
  }

  .gallery-image__img {
    max-width: 34vh;
  }

  .service-box-items .content p {
    margin-bottom: 25px;
  }

  .about-wrapper-3.style-2 .about-content p.about-p {
    margin-bottom: 20px;
  }
  .service-new-section {
    margin-bottom: 36px;
  }
  .pricing-app-row{align-items: flex-start;}
    .pricing-app-row br{display: none;}
    .feature-image_more img.image-spacing {
    margin-top: 35px;
}

.faq-content.text-center .section-title h2 {
  font-size: 38px;
}


}

@media (max-width: 991px) {
  .row.grid-proprty {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    align-items: center;
    justify-content: center;
  }
  .app-section-grid {
    grid-template-columns: 100%;
    gap: unset;
    text-align: center;
  }
  .container-fluid {
    padding: 17px 20px 17px;
  }

  .hero-subtitle {
    max-width: 334px;
  }
  .logo-black {
    margin: auto;
    margin-bottom: 23px;
  }
  .input-serach input {
    width: 100%;
        padding-left: 50px;
    font-size: 13px;
  }
.input-serach img{left: 10px;}
  .faq-content.text-center .section-title h2 {
    font-size: 38px;
  }

  .filter-img img {
    width: 45px;
    height: 45px;
  }

  .web-wrapp {
    display: block;
  }
  .pricing-app-row {
    grid-template-columns: unset;
  }
  section.about-section.fix.section-padding.mw-100.pricing-padding.mb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .about-section.fix.section-padding.pricing-padding
    .about-wrapper-3.style-2
    .about-content
    p.mt-3.about-p.mt-md-0.wow.fadeInUp {
    padding-bottom: 0px;
    margin-bottom: 0;
    padding-bottom: 69px;
    padding-left: 0;
  }
  .properties-div {
    width: 100%;
    padding: 16px 35px;
    margin-bottom: 0px;
  }

  .user-text {
    width: 100%;
    justify-content: center;
  }

  .section-padding.pb-0.insta-section {
    padding-top: 40px;
  }
  .download-sec-grid {
    grid-template-columns: 100%;
    gap: unset;
    text-align: center;
  }
  .row.justify-content-end.mobile-view .col-lg-3.mt-5.mt-lg-0,
  .row.justify-content-end.mobile-view .col-lg-6.mt-5.mt-lg-0 {
    margin-top: 20px !important;
  }

  .col-lg-3.mt-5.mt-lg-0.date-div {
    display: none;
  }

  .row.justify-content-end.mobile-view {
    display: grid;
    grid-template-columns: 70% 13% 17%;
    margin-bottom: 20px;
  }

  .about-section.fix.section-padding.properties-padding {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  a.theme-btn.padding-style.wow.fadeInUp.bg-black.loadmore {
    margin-top: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    display: grid !important;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-contact {
    flex-wrap: wrap;
  }

  .logo-icon {
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .footer-links .d-flex.justify-content-around.gap-100 {
    flex-wrap: wrap;
    justify-content: center;
    display: grid !important;
    gap: 20px;
    text-align: center;
  }
  .app-section-grid h2 {
    font-size: 32px;
    line-height: 35px;
  }
  p.made-by-text {
    text-align: center;
    margin-top: 40px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white {
    padding: 0 0 40px !important; 
    border-radius: 25px;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding .input-serach {
    display: block;
    position: absolute;
    top: 80%;
    width: 79%;
  }

  .section-title.about-heading.about-mob p.about-p {
    padding-bottom: 30px;
    font-size: 14px;
    margin-bottom: 0;
    padding: 0 20px 30px;
  }

  .faq-img.text-center {
    text-align: right !important;
  }

  /* .service-new-section .service-box-items.style-2 {
    padding: 0px 20px 0px;
} */
  .service-section-2.services-new.vertical-scrolling {
    padding-top: 47px;
    padding-bottom: 29px;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding
    .faq-img.text-center
    img {
    width: 321px;
    margin-left: 48%;
    margin-top: -10%;
  }

  .about-section.fix.section-padding.pricing-padding
    .about-wrapper-3.style-2
    .about-content
    p.margin-75 {
    padding-bottom: 0;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding
    .col-lg-4.mt-5.mt-lg-0 {
    margin-top: 0 !important;
  }

  section.faq-section.section-padding.fix.bg-yellow {
    padding: 0 0 40px !important;
    border-radius: 25px;
    display: flex
;
    line-height: 30px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1 {
    font-size: 25px;
    padding: 0px 6px 30px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1
    span
    img {
    width: 25px;
  }

  section.faq-section.section-padding.fix.bg-yellow
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1 {
    font-size: 25px;
    padding: 0px 6px 30px;
  }

  section.faq-section.section-padding.fix.bg-yellow
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1
    span
    img {
    width: 25px;
  }

  .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
    padding-left: 12px;
  }

  .faq-wrapper
    .accordion-item
    .accordion-collapse
    .accordion-body
    .d-flex.align-items-center.gap-61 {
    gap: 20px;
    align-items: flex-start !important;
  }

  .faq-wrapper
    .accordion-item
    .accordion-collapse
    .accordion-body
    .d-flex.align-items-center.gap-61
    img {
    width: 50px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white.first-sect {
    margin-top: -8%;
  }

  .app-img img {
    position: unset;
    bottom: 0;
    right: 0px;
    width: 100% !important;
  }

  section.about-section.fix.section-padding {
    padding-top: 0px;
    padding-bottom: 45px;
  }

  .service-box-items .content p {
    margin-bottom: 25px;
  }

  .cta-video-wrapper.bg-cover.m-0.border-radius-none {
    padding: 73px 22px 0 22px;
    text-align: center;
    height: unset;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .cookie-popup {
    bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .barcode-img.text-center img {
    width: 85% !important;
    padding: 43px 83px;
  }

  .bg-white.new-sec-for-mobile {
    display: block;
  }

  .bg-white.new-sec-for-mobile p.app-page-des {
    text-align: center;
    font-size: 18px;
  }

  .bg-white.new-sec-for-mobile
    .btn-white.inner-page-app.mt-0.justify-content-start
    a.white {
    background-color: #ffe361;
  }

  .bg-white.new-sec-for-mobile
    .btn-white.inner-page-app.mt-0.justify-content-start {
    justify-content: center !important;
  }

  .feature-card.bg-none {
    margin-bottom: 90px !important;
  }

  .col-xl-4.col-lg-4.col-md-6.wow.fadeInUp.define-width-price {
    height: unset;
  }

  .total-btn {
    width: 100%;
    padding: 13px 23px 13px 40px;
    height: unset;
  }

  p.breakdown-cost {
    border-bottom: 1px solid #979797;
    width: max-content;
    padding-bottom: 14px;
  }

  .border-right {
    border-right: none;
    padding: 0;
  }

  .about-section.fix.section-padding.pricing-padding {
    padding-top: 22px;
  }

  section.about-section.fix.section-padding.pricing-padding.bg-white {
    padding-bottom: 0%;
  }

  section.about-section.fix.section-padding.pricing-padding.pt-5 {
    padding: 20px;
  }

  .service-section-2.fix.section-padding.pricing-sec.exchange-sec {
    padding: 86px 15px 79px;
  }

  .exchange-offer-section {
    width: 100%;
    height: unset;
  }

  .marquee {
    margin-bottom: 16px;
  }

  .marquee-inner {
    gap: 16.17px;
  }

  .theme-btn.padding-style.wow.fadeInUp.bg-black {
    display: none;
  }

  .d-flex.justify-content-between.align-items-center.discover-btn {
    width: 100%;
  }

  .slick__slide .feature-card.card1 {
    padding: 10px;
  }

  .input-serach input {
    width: 100%;
        padding-left: 50px;
    font-size: 13px;
  }
  .confidenti-head{padding: 0 10px 90px;}
  .select-div-item select {
    width: 100%;
  }

  a.theme-btn.padding-style.wow.fadeInUp.bg-black.bottom-new {
    display: block;
    margin: 0 auto;
    margin-top: 65px;
  }

  section.hero-section.hero-4 {
    padding-bottom: 40px;
  }

  .col-lg-3.mt-5.mt-lg-0.d-xxl-none.d-lg-block {
    display: block !important;
  }

  .col-lg-3.mt-5.mt-lg-0.d-xxl-none.d-lg-block .filter-img img {
    display: block;
  }

  .slick-slide {
    /* Opacity and scale down to place focus on active slide */
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    transform: scale(0.9);
    outline: none;
    /* Grab Hand Cursor */
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }

  /* Default Slick Slide ACTIVE
     Scale to full size and bring up opacity  */

  .slick-slide.slick-center {
    opacity: 0.95;
    transform: scale(1);
    cursor: pointer;
  }

  /* Add padding between slides
  */

  .slick-slider .slick-slide {
    padding: 0 15px;
  }

  /* Hide default slick prev - next text
     Still accessible.
  */
  .slick-arrow {
    font-size: 1px !important;
    color: transparent;
  }

  .slider .slick-arrow {
    position: absolute;
    background: #3c3b6e;
    opacity: 0.7;
    bottom: -40px;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
    padding: 0;
    overflow: hidden;
    font-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid #fff;
    border-radius: 0%;
    cursor: pointer;
    outline: none;
    transition: 0.25s;
  }

  .slider .slick-arrow:hover,
  .slider .slick-arrow:focus {
    border-color: white;
    color: #b22234;
    background: #b22234;
    opacity: 0.95;
  }

  .slider .slick-arrow:active {
    transform: translateY(-50%) scale(0.9);
  }

  .slider .slick-prev {
    right: 180px;
  }

  .slider .slick-next {
    right: 100px;
  }

  .slick-prev:before {
    content: "â†";
    color: white;
    font-size: 30px;
  }

  .slick-next:before {
    content: "â†’";
    color: white;
    font-size: 30px;
  }

  .slick-slide img {
    width: 188px;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 63px;
  }

  .slick__slide .credit-trext {
    text-align: center;
  }

  .slick__slide .credit-trext h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    opacity: 60%;
    margin-bottom: 24px;
  }

  .my-slider.slick-initialized .slick-slide p {
    color: #000;
  }

  /* Position Slick dots container down some */
  ul.slick-dots {
    margin-top: 40px;
  }

  .slick-dots button {
    background: transparent;
    /* color: white; */
    /* border: 1px solid white; */
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    /* padding-left: 10px; */
    cursor: pointer;
    opacity: 0.8;
    background: #000;
    width: 9px;
    height: 9px;
    line-height: 9px;
    border-radius: 26px;
  }

  .slick-dots > li {
    display: inline-block;

    margin: 12px;
  }

  .slick-dots > .slick-active {
    color: #b22234;
    font-weight: bold;
    /* background: blanchedalmond; */
  }

  .slick-dots {
    list-style: none;
    border-radius: 50%;
    transition: 0.2s;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    /* width: 90vw; */
    margin: 0 auto;
  }

  .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
  }

  .slick-dots li button {
    border: none;
    cursor: pointer;
    font-size: 0px;
    border: 1px solid #fff;
    box-shadow: 0 0 0 0 transparent;
    color: #000000;
    background-color: #00000000;
    transition: all 0.3s ease;
    opacity: 40%;
    border: 2px solid #000;
    height: 5px;
    width: 5px;
  }

  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover {
    opacity: 1;
    background: #3c3b6e;
  }

  .slick-dots li.slick-active button {
    background: #000;
    box-shadow: 0 0 0 1px #fff;
    opacity: 0.9;
  }

  .slick__slide .credit-trext p {
    font-size: 16px;
  }

  section.slider.slick-initialized.slick-slider.slick-dotted {
    display: block;
  }

  .hide-on-desktop {
    display: block;
  }

  .path-mob1 {
    position: absolute;
    top: -35%;
    z-index: -1;
    left: 0%;
  }

  .path-mob1 img {
    width: 238px;
  }

  .path-mob3 {
    position: absolute;
    top: 44%;
    z-index: -1;
    right: 0%;
  }

  .path-mob3 img {
    width: 155px;
  }

  /* .my-slider{
    padding: 0 70px;
  } */
  .my-slider.slick-initialized .slick-slide {
    /* background-color: #b32532; */
    color: #fff;
    /* height: 200px; */
    opacity: 1;
    /* margin: 0 15px 0 0; */
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    text-align: center;
  }

  .feature-title {
    font-size: 18px;
  }

  .my-slider.slick-initialized.slick-slider.slick-dotted .slick-prev {
    display: none !important;
  }

  .my-slider.slick-initialized.slick-slider.slick-dotted .slick-next {
    display: none !important;
  }

  .my-slider.slick-initialized .slick-slide img {
    width: 100%;
  }

  .my-slider.slick-initialized .slick-slide .feature-card {
    display: block;
    padding: 20px 10px 1px 10px;
    box-shadow: none;
  }

  .my-slider.slick-initialized .slick-slide .feature-image-img {
    position: unset;
    margin-top: 10px;
  }

  .my-slider.slick-initialized .slick-dots {
    margin-top: 0px;
  }

  .service-box-items.style-2 .content h4 a {
    font-size: 32px;
    line-height: 40px;
  }

  .d-flex.justify-content-center.gap-3.align-items-center.nocost {
    flex-wrap: wrap;
    display: grid!important;
  }

  .d-flex.justify-content-center.gap-3.align-items-center.nocost.mobile
    .no-member.hiden-cost {
    /* margin-top: 36px!important; */
    order: 1;
    justify-content: flex-start;
  }
  .d-flex.justify-content-center.gap-3.align-items-center.nocost.mobile
    .no-member {
    /* margin-top: 36px; */
    order: 2;
    justify-content: flex-start;
  }
  .service-box-items.style-2 img {
    width: 100%;
  }

  .section-padding.app-section {
    padding-bottom: 0;
    padding-top: 0;
    display: block;
    align-items: center;
    margin-top: -30px;
    z-index: -1;
  }

  .cta-video-wrapper.bg-cover.application {
    border-radius: 30px;
    height: auto;
    /* margin: 0 10px; */
    padding: 80px 0 0;
  }

  .logo-icon img {
    margin: 0 auto;
    display: block;
  }

  .cta-video-wrapper.bg-cover.application h2 {
    font-size: 29px;
    line-height: 34px;
    text-align: center;
  }

  .btn-white a.white {
    padding: 22px 12px 21px;
  }

  .btn-white {
    margin-bottom: 20px;
  }

  .faq-section {
    padding: 40px 0 20px;
  }

  .faq-wrapper .faq-content p {
    margin-bottom: 0;
  }

  .faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
    line-height: 22px;
    padding: 15px 15px 15px;
  }

  .cta-video-wrapper.bg-cover1.insta-img {
    height: auto;
    overflow-x: hidden;
  }

  .app-img-new img {
    position: unset;
  }

  .cta-video-wrapper.bg-cover1.insta-img {
    /* margin: 10px; */
    padding: 60px 0;
    border-radius: 10px;
  }

  .cta-video-wrapper.bg-cover1 .app-img-new img {
    width: 100%;
  }

  .cta-video-wrapper.bg-cover1.insta-img h2 {
    line-height: 46px;
    text-align: center;
  }

  .btn-white.justify-content-start {
    justify-content: center !important;
    margin-bottom: 50px;
  }

  section.about-section.fix1.section-padding.exchange-div.position-relative {
    padding: 0 0 40px !important;
  }

  .marquee-inner3 img {
    width: 30vw;
  }

  .marquee-inner2 img {
    width: 30vw;
  }

  .line-bg img {
    width: 100%;
  }

  .btn-white.mob-new {
    justify-content: center !important;
  }

  .botIcon {
    bottom: 30px;
    right: 20px;
  }

  .cookie-popup__block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    flex-direction: column;
  }

  .theme-btn.padding-style.register-btn {
    margin-top: 30px;
  }

  .faq-wrapper {
    margin-top: 0;
            justify-content: center;
  }
  .d-flex.justify-content-around.gap-100.footer-last-sec3 {
    order: 3;
  }
  .footer-contact.footer-last-sec.hide-on-desktop {
    color: #0000008c;
    order: 4;
  }
  section.faq-section.fix.vertical-scrolling {
    padding-bottom: 104px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-contact.footer-last-sec2 {
    text-align: center;
    margin: auto;
    order: 2;
  }
  section.about-section.pb-0.fix.section-padding.mw-100.pricing-padding {
    padding: 0 !important;
  }
  section.about-section.section-padding.mw-100.fix.pricing-padding {
    padding-top: 0% !important;
    padding-bottom: 0 !important;
  }
  section.about-section.fix1.section-padding.mw.p-0.exchange-div.position-relative {
    padding-top: 0% !important;
    padding-bottom: 0 !important;
  }
  .service-box-items .content p.breakdown-cost {
    margin-bottom: 25px;
    padding: 0 0px 14px 0;
  }
 .tidio-p32l1d {
    display: none!important;
    visibility: hidden;
  }

  .awesome-iframe .widget-position-right.bubbleWithLabel .widgetLabel{display: none;}

}

@media (max-width: 767px) {

  .swiper-slide .feature-card.homepage {
    display: block;
   height: 385px;
    box-shadow: none;
  }

    .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
  top:100%!important
}
.swiper.swiper-initialized.swiper-horizontal{
  overflow:visible
}

  .awesome-iframe .widget-position-right.bubbleWithLabel .widgetLabel {
    display: none;
  }

  .container-fluid {
    padding: 17px 20px 17px;
  }
  .logo-black {
    margin: auto;
    margin-bottom: 23px;
  }
  .hero-subtitle {
    max-width: 334px;
  }

  .row.grid-proprty {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    align-items: center;
    justify-content: center;
  }
  .pricing-app-row {
    grid-template-columns: unset;
  }
  section.about-section.fix.section-padding.mw-100.pricing-padding.mb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .about-section.fix.section-padding.pricing-padding
    .about-wrapper-3.style-2
    .about-content
    p.mt-3.about-p.mt-md-0.wow.fadeInUp {
    margin-bottom: 0;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-title {
    font-size: 24px;
  }

  .service-box-items .content p {
    margin-bottom: 0px;
    padding: 0 12px;
  }
  .service-box-items .content p br {
    display: none;
  }
  .input-serach input {
    width: 100%;
        padding-left: 50px;
    font-size: 13px;
  }
  .input-serach img{left: 10px;}
  .confidenti-head{padding: 0 10px 90px;}
.awesome-iframe .widget-position-right.bubbleWithLabel .widgetLabel{display: none;}
  .filter-img img {
    width: 45px;
    height: 45px;
  }

  .service-new-section .service-box-items.style-2 {
    padding: 20px 20px 0px;
  }

  .service-section-2.services-new.vertical-scrolling {
    padding-top: 47px;
    padding-bottom: 29px;
  }

  .properties-div {
    width: 100%;
    padding: 16px 35px;
    margin-bottom: 0px;
  }

  .user-text {
    width: 100%;
    justify-content: center;
  }

  .row.justify-content-end.mobile-view .col-lg-3.mt-5.mt-lg-0,
  .row.justify-content-end.mobile-view .col-lg-6.mt-5.mt-lg-0 {
    margin-top: 20px !important;
  }

  .col-lg-3.mt-5.mt-lg-0.date-div {
    display: none;
  }

  .row.justify-content-end.mobile-view {
    display: grid;
    grid-template-columns: 70% 13% 17%;
    margin-bottom: 20px;
  }

  .section-padding.pb-0.insta-section {
    padding-top: 40px !important;
  }
  .footer-contact.footer-last-sec.hide-on-desktop {
    color: #0000008c;
    order: 4;
  }
  .about-section.fix.section-padding.properties-padding {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  section.faq-section.fix.vertical-scrolling {
    padding-bottom: 104px;
  }

  a.theme-btn.padding-style.wow.fadeInUp.bg-black.loadmore {
    margin-top: 30px;
  }

  .logo-icon {
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    display: grid !important;
    gap: 20px;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-contact {
    flex-wrap: wrap;
  }
  .footer-contact.footer-last-sec2 {
    text-align: center;
    margin: auto;
    order: 2;
  }
  .footer-contact.footer-last-sec {
    order: 4;
  }
  .d-flex.justify-content-around.gap-100.footer-last-sec3 {
    order: 3;
  }
  .footer-links .d-flex.justify-content-around.gap-100 {
    flex-wrap: wrap;
    justify-content: center;
    display: grid !important;
    gap: 10px;
    text-align: center;
  }

  p.made-by-text {
    text-align: center;
    margin-top: 40px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white {
    padding: 0 0 40px !important;
    border-radius: 25px;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding .input-serach {
    display: block;
    position: absolute;
    top: 80%;
    width: 79%;
  }
  section.about-section.pb-0.fix.section-padding.mw-100.pricing-padding {
    padding: 0 !important;
  }
  .about-wrapper-3.style-2 .about-content p.about-p {
    padding-bottom: 0;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 22px;
    margin-top: 0 !important;

  }
  .section-title.about-heading.about-mob{padding-bottom: 15px;}
  p.mt-3.about-p.margin-75.mt-md-0.wow.fadeInUp.faq-des {
    padding: 0;
  }
  .faq-content.text-center .section-title h2 {
    padding-bottom: 0;
  }
  .faq-wrapper .row.justify-content-center .col-lg-6.mt-5.mt-lg-0 {
    margin-top: 15px !important;
  }
  /* .site-footer{padding-bottom: 0;} */
  .faq-img.text-center {
    text-align: right !important;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding
    .faq-img.text-center
    img {
    width: 321px;
    margin-left: 48%;
    margin-top: 0%;
  }

  .hero-4 .hero-content h1 {
    font-size: 38px;
    margin-top: 0px;
  }
  .section-title.about-heading {
    padding-bottom: 0;
  }
  .about-section.fix.section-padding.pricing-padding
    .about-wrapper-3.style-2
    .about-content
    p.margin-75 {
    padding-bottom: 0;
  }

  section.about-section.pb-0.fix.section-padding.pricing-padding
    .col-lg-4.mt-5.mt-lg-0 {
    margin-top: 0 !important;
  }

  section.faq-section.section-padding.fix.bg-yellow {
    padding: 0 0 40px !important;
    border-radius: 25px;
    display: flex;
    line-height: 30px;
  }

  section.about-section.fix.section-padding {
    padding-top: 0px;
    padding-bottom: 45px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1 {
    font-size: 25px;
    padding: 0px 6px 30px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1
    span
    img {
    width: 25px;
  }

  section.faq-section.section-padding.fix.bg-yellow
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1 {
    font-size: 25px;
    padding: 0px 6px 30px;
  }

  section.faq-section.section-padding.fix.bg-yellow
    .faq-wrapper
    .accordion-item
    .accordion-header
    .accordion-button1
    span
    img {
    width: 25px;
  }

  .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
    padding-left: 12px;
  }

  .faq-wrapper
    .accordion-item
    .accordion-collapse
    .accordion-body
    .d-flex.align-items-center.gap-61 {
    gap: 20px;
    align-items: flex-start !important;
  }

  .faq-wrapper
    .accordion-item
    .accordion-collapse
    .accordion-body
    .d-flex.align-items-center.gap-61
    img {
    width: 50px;
  }

  section.faq-section.section-padding.section-bg.fix.bg-white.first-sect {
    margin-top: -21%;
  }

  .app-img img {
    position: unset;
    bottom: 0;
    right: 0px;
    width: 100% !important;
  }

  .cta-video-wrapper.bg-cover.m-0.border-radius-none {
    padding: 73px 22px 0 22px;
    text-align: center;

    height: unset;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .cookie-popup {
    bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .barcode-img.text-center img {
    width: 100%;
    padding: 43px 83px;
  }

  .bg-white.new-sec-for-mobile {
    display: block;
  }

  .bg-white.new-sec-for-mobile p.app-page-des {
    text-align: center;
    font-size: 18px;
  }

  .bg-white.new-sec-for-mobile
    .btn-white.inner-page-app.mt-0.justify-content-start
    a.white {
    background-color: #ffe361;
  }

  .bg-white.new-sec-for-mobile
    .btn-white.inner-page-app.mt-0.justify-content-start {
    justify-content: center !important;
  }

  .feature-card.bg-none {
    margin-bottom: 50px !important;
  }

  .pricing-app-row .feature-card.bg-none p{
    padding: 0 0 20px !important;
    font-size: 14px;
  }

  .col-xl-4.col-lg-4.col-md-6.wow.fadeInUp.define-width-price {
    height: unset;
  }

  .total-btn {
    width: 100%;
    padding: 13px 23px 13px 40px;
    height: unset;
  }

  p.breakdown-cost {
    border-bottom: 1px solid #979797;
    width: max-content;
    padding-bottom: 14px;
  }

  .border-right {
    border-right: none;
    padding: 0;
  }

  .about-section.fix.section-padding.pricing-padding {
    padding-top: 22px;
  }
  section.about-section.section-padding.mw-100.fix.pricing-padding {
    padding-top: 0% !important;
    padding-bottom: 0 !important;
  }
  section.about-section.fix1.section-padding.mw.p-0.exchange-div.position-relative {
    padding-top: 0% !important;
    padding-bottom: 0 !important;
  }
  section.about-section.fix.section-padding.pricing-padding.bg-white {
    padding-bottom: 0%;
  }

  section.about-section.fix.section-padding.pricing-padding.pt-5 {
    padding: 20px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .service-section-2.fix.section-padding.pricing-sec {
    margin-top: 0 !important;
  }
  .service-section-2.fix.section-padding.pricing-sec.exchange-sec {
    padding: 86px 15px 79px;
        background-position: 800px;
  }
  .service-box-items .content p.breakdown-cost {
    margin-bottom: 25px;
    padding: 0 0px 14px 0;
  }
  .exchange-offer-section {
    width: 100%;
    height: unset;
  }

  .service-box-items.style-2.opacity-100 .total-btn p {
    padding: 0;
  }
  .service-box-items.style-2.opacity-100 .total-btn h2 small {
    display: none;
  }
  .service-box-items.style-2.opacity-100 .total-btn h2 span {
    display: none;
  }
  .marquee {
    margin-bottom: 16.3px;
  }

  .marquee-inner1 {
    gap: 16.17px;
  }

  .marquee-inner {
    gap: 16.17px;
  }

  .theme-btn.padding-style.wow.fadeInUp.bg-black {
    display: none;
  }

  .d-flex.justify-content-between.align-items-center.discover-btn {
    width: 100%;
  }

  .slick__slide .feature-card.card1 {
    padding: 10px;
  }

  a.theme-btn.padding-style.wow.fadeInUp.bg-black.bottom-new {
    display: block;
    /* margin: 0 auto; */
    margin-top: 42px;
    margin-bottom: 0px;
  }

  section.hero-section.hero-4 {
    padding-bottom: 40px;
  }

  .slick-slide {
    /* Opacity and scale down to place focus on active slide */
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    transform: scale(0.9);
    outline: none;
    /* Grab Hand Cursor */
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }

  .col-lg-3.mt-5.mt-lg-0.d-xxl-none.d-lg-block {
    display: block !important;
  }

  .col-lg-3.mt-5.mt-lg-0.d-xxl-none.d-lg-block .filter-img img {
    display: block;
  }

  /* Default Slick Slide ACTIVE
   Scale to full size and bring up opacity  */

  .slick-slide.slick-center {
    opacity: 0.95;
    transform: scale(1);
    cursor: pointer;
  }

  /* Add padding between slides
*/

  .slick-slider .slick-slide {
    padding: 0 15px;
  }

  /* Hide default slick prev - next text
   Still accessible.
*/
  .slick-arrow {
    font-size: 1px !important;
    color: transparent;
  }

  .slider .slick-arrow {
    position: absolute;
    background: #3c3b6e;
    opacity: 0.7;
    bottom: -40px;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
    padding: 0;
    overflow: hidden;
    font-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid #fff;
    border-radius: 0%;
    cursor: pointer;
    outline: none;
    transition: 0.25s;
  }

  .slider .slick-arrow:hover,
  .slider .slick-arrow:focus {
    border-color: white;
    color: #b22234;
    background: #b22234;
    opacity: 0.95;
  }

  .slider .slick-arrow:active {
    transform: translateY(-50%) scale(0.9);
  }

  .slider .slick-prev {
    right: 180px;
  }

  .slider .slick-next {
    right: 100px;
  }

  .slick-prev:before {
    content: "â†";
    color: white;
    font-size: 30px;
  }

  .slick-next:before {
    content: "â†’";
    color: white;
    font-size: 30px;
  }

  .slick-slide img {
    width: 188px;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 22px;
  }

  .slick__slide .credit-trext {
    text-align: center;
  }

  .slick__slide .credit-trext h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    opacity: 60%;
    margin-bottom: 24px;
  }

  .my-slider.slick-initialized .slick-slide p {
    color: #000;
  }

  .my-slider-1.slick-initialized .slick-slide p {
    color: #000;
  }

  /* Position Slick dots container down some */
  ul.slick-dots {
    margin-top: 40px;
  }

  .slick-dots button {
    background: transparent;
    /* color: white; */
    /* border: 1px solid white; */
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    /* padding-left: 10px; */
    cursor: pointer;
    opacity: 0.8;
    background: #000;
    width: 9px;
    height: 9px;
    line-height: 9px;
    border-radius: 26px;
  }

  .slick-dots > li {
    display: inline-block;

    margin: 12px;
  }

  .slick-dots > .slick-active {
    color: #b22234;
    font-weight: bold;
    /* background: blanchedalmond; */
  }

  .slick-dots {
    list-style: none;
    border-radius: 50%;
    transition: 0.2s;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    /* width: 90vw; */
    margin: 0 auto;
  }

  .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
  }

  .slick-dots li button {
    border: none;
    cursor: pointer;
    font-size: 0px;
    border: 1px solid #fff;
    box-shadow: 0 0 0 0 transparent;
    color: #000000;
    background-color: #00000000;
    transition: all 0.3s ease;
    opacity: 40%;
    border: 2px solid #000;
    height: 5px;
    width: 5px;
  }

  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover {
    opacity: 1;
    background: #3c3b6e;
  }

  .slick-dots li.slick-active button {
    background: #000;
    box-shadow: 0 0 0 1px #fff;
    opacity: 0.9;
  }

  .slick__slide .credit-trext p {
    font-size: 16px;
  }

  section.slider.slick-initialized.slick-slider.slick-dotted {
    display: block;
  }

  .hide-on-desktop {
    display: block;
  }

  .path-mob1 {
    position: absolute;
    top: -35%;
    z-index: -1;
    left: 0%;
  }

  .path-mob1 img {
    width: 238px;
  }

  .path-mob3 {
    position: absolute;
    top: 44%;
    z-index: -1;
    right: 0%;
  }

  .path-mob3 img {
    width: 155px;
  }

  /* .my-slider{
  padding: 0 70px;
} */
  .my-slider.slick-initialized .slick-slide {
    /* background-color: #b32532; */
    color: #fff;
    /* height: 200px; */
    opacity: 1;
    /* margin: 0 15px 0 0; */
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    text-align: center;
  }

  .my-slider.slick-initialized.slick-slider.slick-dotted .slick-prev {
    display: none !important;
  }

  .my-slider.slick-initialized.slick-slider.slick-dotted .slick-next {
    display: none !important;
  }

  .my-slider.slick-initialized .slick-slide img {
    width: 100%;
  }

   .swiper-slide .feature-card.homepage{
    display: block;
    padding: 20px 16px 1px 16px;
    box-shadow: none;
    max-height: 540px;
    height: 530px;
  }

  .my-slider.slick-initialized .slick-slide .feature-image-img {
    position: unset;
  }

  .my-slider.slick-initialized .slick-dots {
    margin-top: 0px;
  }

  .my-slider-1.slick-initialized .slick-slide {
    /* background-color: #b32532; */
    color: #fff;
    /* height: 200px; */
    opacity: 1;
    /* margin: 0 15px 0 0; */
    /* display: flex; */
    align-items: center;
    padding: 0;
    justify-content: center;
    text-align: center;
  }

  .my-slider-1.slick-initialized.slick-slider.slick-dotted .slick-prev {
    display: none !important;
  }

  .my-slider-1.slick-initialized.slick-slider.slick-dotted .slick-next {
    display: none !important;
  }

  .my-slider-1.slick-initialized .slick-slide img {
    width: 100%;
  }

  .my-slider-1.slick-initialized .slick-slide .feature-card {
    display: block;
    padding: 20px 10px 1px 10px;
    box-shadow: none;
  }

  .my-slider-1.slick-initialized .slick-slide .feature-image-img {
    position: unset;
  }

  .my-slider-1.slick-initialized .slick-dots {
    margin-top: 0px;
  }

  .service-box-items.style-2 .content h4 a {
    font-size: 32px;
    line-height: 40px;
  }

  .d-flex.justify-content-center.gap-3.align-items-center.nocost {
    flex-wrap: wrap;
    display: grid!important;
  }

  /* .d-flex.justify-content-center.gap-3.align-items-center.nocost.mobile .no-member.hiden-cost {
    margin-top: 0px;
  } */

  .service-box-items.style-2 img {
    width: 100%;
  }

  .section-padding.app-section {
    padding-bottom: 0;
    padding-top: 0;
    display: block;
    align-items: center;
    margin-top: -30px;
    z-index: -1;
  }

  .cta-video-wrapper.bg-cover.application {
    border-radius: 30px;
    height: auto;
    /* margin: 0 10px; */
    padding: 40px 0 0;
  }

  .logo-icon img {
    margin: 0 auto;
    display: block;
  }

  .cta-video-wrapper.bg-cover.application h2 {
    font-size: 29px;
    line-height: 34px;
    text-align: center;
  }

  .faq-wrapper {
    margin-top: 0;
            justify-content: center;
  }

  .btn-white a.white {
    padding: 22px 12px 21px;
  }

  .btn-white {
    margin-bottom: 20px;
  }

  .faq-section {
    padding: 40px 0 20px;
  }

  .faq-wrapper .faq-content p {
    margin-bottom: 0;
  }

  .faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
    line-height: 22px;
    padding: 15px 15px 15px;
  }

  .cta-video-wrapper.bg-cover1.insta-img {
    height: auto;
    overflow-x: hidden;
  }

  .app-img-new img {
    position: unset;
  }

  .cta-video-wrapper.bg-cover1.insta-img {
    /* margin: 10px; */
    padding: 60px 0;
    border-radius: 10px;
  }

  .cta-video-wrapper.bg-cover1 .app-img-new img {
    width: 100%;
  }

  .cta-video-wrapper.bg-cover1.insta-img h2 {
    line-height: 40px;
    text-align: center;
  }

  .btn-white.justify-content-start {
    justify-content: center !important;
    margin-bottom: 50px;
  }

  section.about-section.fix1.section-padding.exchange-div.position-relative {
           padding: 0 0 40px !important;
  }

  .marquee-inner3 img {
    width: 50vw;
  }

  .marquee-inner2 img {
    width: 50vw;
  }

  .line-bg img {
    width: 100%;
  }

  .btn-white.mob-new {
    justify-content: center !important;
    /* padding: 0 10px; */
  }

  .botIcon {
    bottom: 30px;
    right: 20px;
  }

  .cookie-popup__block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    flex-direction: column;
  }

  .theme-btn.padding-style.register-btn {
    margin-top: 80px !important;
  }

  .tidio-p32l1d {
    display: none!important;
    visibility: hidden;
  }

  .d-flex.justify-content-center.gap-3.align-items-center.nocost.mobile
    .no-member.hiden-cost {
    /* margin-top: 0px!important; */
    justify-content: flex-start;
    padding: 15px 25px 14px;
    order: 1;
  }
  .d-flex.justify-content-center.gap-3.align-items-center.nocost.mobile
    .no-member {
    padding: 15px 25px 14px;
    justify-content: flex-start;
    order:2;
  }

  /* .feature-card{margin: 20px;} */
  /* .feature-card.f-card-h{height: 41vh;}
.feature-image.position-absolute{width: 346px;
  right: -35px;
  top: 37%;}
img.vh-card-img{width: 388px!important;} */
}

@media screen and (width: 1680px) and (height: 1050px) {
  .about-wrapper-3.style-2 .about-content p.about-p {
    font-size: 20px;
    line-height: 28px;
  }

  .hero-4 .hero-content {
    margin-top: 0px;
    padding-top: 30;
  }

  .marquee {
    margin-top: 2%;
  }

  .d-flex.justify-content-between.align-items-center.discover-btn {
    /* width: 80% !important; */
    align-items: flex-start !important;
  }

  .hero-4 .hero-content p {
    font-size: 20px;
    line-height: 26px;
  }

  .no-member {
    font-size: 20px;
    width: 280px;
    height: 62px;
  }
}

@media screen and (width: 991px) and (height: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 800px) {
  .hero-4 .hero-content h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 600px) and (max-width: 615px) {
  /* .d-flex.justify-content-center.gap-3.align-items-center.nocost.mobile .no-member.hiden-cost{
    margin-top: 36px !important;
  } */
}
@media screen and (min-width: 991px) and (max-width: 1023px) {
  .app-section-grid {
    display: grid;
    grid-template-columns: unset;
    gap: 0%;
    align-items: end;
    text-align: center;
  }
  .cta-video-wrapper.bg-cover1.insta-img .row.align-items-center .col-lg-6 {
    width: 50%;
  }
  .cta-video-wrapper.bg-cover1.insta-img h2 {
    font-size: 38px;
  }
  .btn-white.justify-content-start {
    margin-bottom: 0px;
  }
  .tag-list li {
    margin-bottom: 0;
  }
  section.about-section.section-padding.vertical-scrolling .container {
    max-width: 900px;
  }
}

@media screen and (max-width: 1280px) {
.section.first-sec.stickyk{padding-bottom: 0; padding-top: 0px;}}

@media (max-width: 1163px) {
.row-grid.mt-1{gap: 35px;}
.swiper-slide .feature-card.homepage{
    display: block;
    padding: 20px 16px 1px 16px;
    box-shadow: none;
    max-height: 540px;
    height: 550px;
  }

}
@media (max-width: 500px) {
  .swiper-slide .feature-card.homepage {
    max-height: 450px;
  }
}
@media (max-width: 400px) {
  .swiper-slide .feature-card.homepage {
    max-height: 400px;
  }
}

@media (max-width: 991px) {
    /* .swiper-slide .feature-card.homepage {
    display: block;
   height: 420px;
    box-shadow: none;
  } */
.pricing-app-row{align-items: flex-start;}
      a.theme-btn.padding-style.register-btn {
        margin-top: 70px;
    }
    .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
  top:100%!important
}
.swiper.swiper-initialized.swiper-horizontal{
  overflow:visible
}

  .service-new-section {
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .service-new-section {
    margin-bottom: 36px;
  }
}

:root {
  --dot-size: 12px;
  --scale-value: 1.5;
  --bg-color: #fff;
}

/* html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
} */

/* .content-scroll {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
} */

/* .section {
  height: 100vh;
  scroll-snap-align: start;
} */
.app-sec-kaza {
  gap: 59px;
}
a.white.yellow-blurr {
  background: #ffe361;
  opacity: 70% !important;
}
/* .app-new-images {
    display: grid
;
    grid-template-columns: repeat(5, 1fr);
} */

.last-download-sec {
  display: grid;
  grid-template-columns: 60% 20%;
  padding-top: 80px;
  padding-bottom: 80px;
  justify-items: center;
}
.last-download-sec h3 {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 9px;
}
.last-download-sec p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  opacity: 80%;
  color: #000;
}
.app-sec-kaza-2.app-sec-kaza {
  display: flex;
  align-items: center;
  text-align: left;
}
.app-sec-kaza-img {
  width: 110px;
}
.app-new-images-mobile img {
  width: 100%;
}
@media (max-width: 991px) {
  .mobile-text-app {
    margin-top: 22px;
  }
  .app-sec-kaza {
    gap: 26px;
  }
  .app-sec-kaza-img {
    width: 100px;
  }
  .app-sec-mob h2.app-page-heading {
    font-size: 38px;
    margin-bottom: 14px;
    line-height: 43px;
  }
  .app-sec-mob p.app-page-des {
    font-size: 20px;
    margin-bottom: 0;
  }
  .hide-on-desktop.app-sec-mob {
    padding-top: 71px;
  }
  .mobile-text-app h2 {
    font-size: 30px;
    text-align: center;
  }
  .bg-white.new-sec-for-mobile.sceener-mob {
    margin-top: -102px;
    background: #fff;
    position: relative;
    z-index: 99;
    border-radius: 25px 25px 0 0;
  }
  .sceener-mob-text {
    text-align: center;
    margin-bottom: 30px;
  }
  .sceener-mob-text h4 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sceener-mob-text p {
    font-size: 22px;
  }
}
@media (max-width: 776px) {
  .mobile-text-app {
    margin-top: 22px;
  }
  .app-sec-kaza {
    gap: 8px;
  }
  .app-sec-kaza-img {
    width: 69px;
  }
  .app-sec-mob h2.app-page-heading {
    font-size: 32px;
    margin-bottom: 0px;
    line-height: 40px;
  }
  .app-sec-mob p.app-page-des {
    font-size: 15px;
    margin-bottom: 0;
  }
  .hide-on-desktop.app-sec-mob {
    padding-top: 71px;
  }
  .mobile-text-app h2 {
    font-size: 22px;
    text-align: center;
  }
  .bg-white.new-sec-for-mobile.sceener-mob {
    margin-top: -44px;
  }
  .sceener-mob-text {
    text-align: center;
    margin-bottom: 30px;
  }
  .sceener-mob-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .sceener-mob-text p {
    font-size: 16px;
  }
  .barcode-img.text-center img {
    width: 80%;
  }
}
@media (max-width: 450px) {
  .btn-white.inner-page-app.mt-0.justify-content-start a.white {
    padding: 20px 12px 20px;
  }
  .btn-white.inner-page-app.mt-0.justify-content-start p {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -0.5px;
  }
  .btn-white.inner-page-app.mt-0.justify-content-start svg {
    width: 38px;
  }
}

.last-section.vertical-scrolling.fp-section {
  display: flex;
  align-items: center;
}

.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.section {
  z-index: 1;
  background-color: var(--white);

  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  /* margin-bottom: -80px; */
  padding-top: 84px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (min-width: 768px) and (min-height: 481px) {
  .stickyk {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

.section.stickyk {
  overflow: hidden;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}
.section-back {
  z-index: 7;
  opacity: 0;
  pointer-events: none;
  background-color: #00000026;
  position: absolute;
  inset: 0%;
}
.section.stickyk.faq-sec {
  background-color: #f7f6e9;
}
section.section.bottom-art.stickyk {
  padding-bottom: 80px;
}
.section.first-sec.stickyk {
  background: linear-gradient(0deg, #f7f6e9 47.95%, #ffffff 119.86%);
  /* padding-top: 0px; */
  padding-bottom: 125px;
}

@media screen and (max-width: 767px) {
    .credit-trext p {
    width: 75%;
  }

  .section-app-dash {
    padding: 30px 0 0;
}

  .stickyk {
    top: 0 !important;
    opacity: 1 !important;
  }
}
@media screen and (max-width: 767px) {
  .pricing-app-row br{display: block;}

  .section {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-bottom: -80px;
    padding-top: 50px;
    padding-bottom: 130px;
  }
}

@media screen and (max-width: 475px) {


  h2 {
    font-size: 30px;
    line-height: 40px;
  }

   /* p.how-it-work-p br{
    display: none;
  } */
  .about-section.fix.section-padding.pricing-padding .about-wrapper-3.style-2 .about-content p.mt-3.about-p.mt-md-0.wow.fadeInUp.how-it-work-p br{
    display: none;
  }
}

/* @media screen and (max-width: 768px) {
  .section {
    padding-top: 0px;
  }
} */

@media (min-width: 600px) and (max-width: 767px){
  section.about-section.pb-0.fix.section-padding.pricing-padding .input-serach {
   top: 68%;

  }

    section.about-section.pb-0.fix.section-padding.pricing-padding
    .faq-img.text-center
    img {
    width: 321px;
    margin-left: 58%;
    margin-top: -8%;
    
  }
}
/* section.about-section.pb-0.fix.section-padding.pricing-padding .input-serach */


