/*Google Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Marcellus&amp;family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600;1,700&amp;display=swap");
/* Modern CSS3 Reset */
body {
  color: var(--color-black);
  font-family: var(--ff-red-hat);
}

html, body, div, h1, h2, h3, h4, h5 p, ul, ol, li, form, input, button, textarea, img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-Marcellus);
  margin-bottom: 0;
}

p {
  font-family: var(--ff-red-hat);
  margin-bottom: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Remove list styles on list elements */
ul, ol {
  list-style: none;
}

/* Remove hyperlinks text decoration */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Reset input and textarea styles */
input, textarea {
  outline: none;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/*container*/
.container {
  max-width: 1200px;
}

input, textarea {
  width: 100%;
  display: block;
}

/* default typography */
h1 {
  font-size: 80px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 44px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

:root {
  --ff-Marcellus: 'Marcellus', serif;
  --ff-red-hat: 'Red Hat Display', sans-serif;
  --color-brand: #F55837;
  --color-black: #0D0C0B;
}

/* ==================
common utilities start
==================*/
.gx-4 {
  --bs-gutter-x: 30px;
}

.text-black {
  color: var(--color-black);
}

.bg-black {
  background: var(--color-black);
}

.space-y-top {
  padding-top: 120px;
}

@media screen and (max-width: 992px) {
  .space-y-top {
    padding-top: 100px;
  }
}

@media screen and (max-width: 576px) {
  .space-y-top {
    padding-top: 80px;
  }
}

.space-y-bottom {
  padding-bottom: 120px;
}

@media screen and (max-width: 992px) {
  .space-y-bottom {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 576px) {
  .space-y-bottom {
    padding-bottom: 80px;
  }
}

.space-y-margin-top {
  margin-top: 120px;
}

@media screen and (max-width: 992px) {
  .space-y-margin-top {
    margin-top: 100px;
  }
}

@media screen and (max-width: 576px) {
  .space-y-margin-top {
    margin-top: 80px;
  }
}

.bg-surface-base {
  background: #FAFAFA;
}

.bg-surface-base.v-dark {
  background: #1A1816;
}

.container-right {
  margin-left: calc((100% - 1176px) / 2);
}

@media screen and (max-width: 1200px) {
  .container-right {
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
  }
}

.section-heading {
  position: relative;
}

.section-heading .heading-icon {
  position: absolute;
  left: 0;
  top: 17px;
  height: 55px;
}

.section-heading .heading-icon + h2 {
  padding-left: 42px;
}

.section-heading span {
  font-size: 14px;
  line-height: 142.857%;
  color: var(--color-brand);
  display: block;
  margin-bottom: 7px;
}

.section-heading h2 {
  font-family: var(--ff-Marcellus);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: var(--color-black);
  text-transform: uppercase;
}

.section-heading h2 img {
  height: 60px;
}

.section-heading p {
  font-weight: 400;
  line-height: 150%;
  color: rgba(13, 12, 11, 0.8);
  margin-top: 16px;
}

@media screen and (max-width: 1200px) {
  .section-heading .heading-icon {
    top: 12px;
    height: 44px;
  }
  .section-heading .heading-icon + h2 {
    padding-left: 38px;
  }
  .section-heading h2 {
    font-size: 64px;
  }
  .section-heading h2 img {
    height: 46px;
  }
}

@media screen and (max-width: 992px) {
  .section-heading h2 {
    font-size: 54px;
  }
  .section-heading p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .section-heading .heading-icon + h2 {
    padding-left: 32px;
  }
  .section-heading .heading-icon {
    height: 38px;
  }
}

@media screen and (max-width: 576px) {
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading h2 img {
    height: 38px;
  }
  .section-heading .heading-icon + h2 {
    padding-left: 28px;
  }
  .section-heading .heading-icon {
    height: 32px;
    top: 7px;
  }
}

.section-heading.v-dark h2 {
  color: #fff;
}

.section-heading.v-dark p {
  color: #fff;
}

.section-heading.v-dark p a {
  color: #fff;
}

p a {
  font-weight: 500;
  color: var(--color-black);
  text-decoration: underline;
}

/* ==================
common utilities end
==================*/
/* ==================
Common Buttons
==================*/
.btn-rounded-lg {
  text-align: center;
  color: #fff;
  font-family: var(--ff-red-hat);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  border-radius: 40px;
  background: var(--color-brand);
  padding: 20px 40px;
  display: inline-block;
}

.btn-rounded-lg span {
  position: relative;
  z-index: 10;
  display: block;
}

.btn-rounded-lg:hover {
  color: #ffffff;
}

.btn-rounded-lg:hover span {
  -webkit-animation: UpInitial 0.25s, UpEnd 0.25s 0.25s;
          animation: UpInitial 0.25s, UpEnd 0.25s 0.25s;
}

@media screen and (max-width: 992px) {
  .btn-rounded-lg {
    font-size: 14px;
    padding: 15px 30px;
  }
}

@-webkit-keyframes UpInitial {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(1, 1.2, 1);
            transform: translate3d(0, -100%, 0) scale3d(1, 1.2, 1);
  }
}

@keyframes UpInitial {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(1, 1.2, 1);
            transform: translate3d(0, -100%, 0) scale3d(1, 1.2, 1);
  }
}

@-webkit-keyframes UpEnd {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 1.2, 1);
            transform: translate3d(0, 100%, 0) scale3d(1, 1.2, 1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes UpEnd {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 1.2, 1);
            transform: translate3d(0, 100%, 0) scale3d(1, 1.2, 1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.btn-border-border {
  color: var(--color-black);
  text-align: center;
  font-family: var(--ff-red-hat);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 106.667%;
  position: relative;
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1;
  padding-left: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.btn-border-border.v-dark {
  color: #fff;
}

.btn-border-border::before {
  content: "";
  width: 16px;
  height: 2px;
  display: block;
  background: var(--color-brand);
  position: absolute;
  left: 0;
  bottom: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-border-border::after {
  content: "";
  width: 16px;
  height: 2px;
  display: block;
  background: var(--color-brand);
  position: absolute;
  right: -16px;
  bottom: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-border-border:hover {
  color: var(--color-black);
  padding-right: 20px;
  padding-left: 0;
}

.btn-border-border:hover::before {
  left: -16px;
}

.btn-border-border:hover::after {
  right: 0;
}

@media screen and (max-width: 992px) {
  .btn-border-border {
    font-size: 14px;
  }
}

.martin-slider-pagination .swiper-pagination-bullet {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--color-brand);
  position: relative;
  margin: 5px 10px !important;
  display: inline-block;
  opacity: 1 !important;
}

.martin-slider-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  inset: -5px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.martin-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1.5px solid var(--color-brand);
}

/* ==================
cursor style start
==================*/
@media (min-width: 992px) {
  .cursor-dot,
  .cursor-dot-outline {
    z-index: 1100;
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-brand);
  }
  .cursor-dot-outline {
    width: 30px;
    height: 30px;
    background-color: var(--color-brand);
    opacity: 0.5 !important;
  }
}

/* ==================
cursor style end
==================*/
/* ==================
Preloader Component Start
==================*/
.preloader {
  background-color: white;
  position: fixed;
  z-index: 1190;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.v-dark.preloader {
  background-color: #0D0C0B;
}

.preloader .preloader-item {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-item p {
  color: rgba(13, 12, 11, 0.6);
  font-weight: 500;
  font-size: 14px;
}

.v-dark .preloader-item p {
  color: rgba(255, 255, 255, 0.7);
}

.spinner-grow {
  color: var(--color-brand);
}

/* ==================
Preloader Component End
==================*/
/* ==================
Back To Top btn Start
==================*/
.back-top {
  cursor: pointer;
  position: fixed !important;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--color-brand);
  color: #fff;
  padding: 16px 0 12px 0;
  width: 40px;
  position: absolute;
}

.back-top.back-top-show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.back-top .scoll-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-left: 8px;
  font-size: 14px;
}

.back-top .scroll-line {
  width: 1px;
  height: 60px;
  overflow: hidden;
  margin: 0 0 10px 20px;
}

.back-top .scroll-line:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(0, rgba(21, 175, 90, 0)));
  background: linear-gradient(180deg, #fff 50%, rgba(21, 175, 90, 0) 0);
  background-position: 0 -60px;
  background-size: 100% 200%;
  -webkit-animation: backtop 5s cubic-bezier(0.76, 0, 0.3, 1) infinite forwards;
  animation: backtop 5s cubic-bezier(0.76, 0, 0.3, 1) infinite forwards;
}

@-webkit-keyframes backtop {
  from {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  0% {
    background-position: 0 60px;
  }
}

@keyframes backtop {
  from {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  0% {
    background-position: 0 60px;
  }
}

/* ==================
Back To Top btn End
==================*/
/* ==================
Custom Scrollbar
==================*/
body::-webkit-scrollbar {
  width: 9px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(179, 174, 174, 0.722);
  border-radius: 14px;
}

body.body-dark::-webkit-scrollbar {
  width: 9px;
}

body.body-dark::-webkit-scrollbar-track {
  background: #0D0C0B;
}

body.body-dark::-webkit-scrollbar-thumb {
  background-color: #24211d;
  border-radius: 14px;
}

/* ==================
Hero Style Start
==================*/
.hero_style__one {
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 576px) {
  .hero_style__one {
    padding-top: 170px;
  }
}

.hero_style__one .hero-grid-shape {
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.hero_style__one .hero__title {
  font-size: 44px;
  line-height: 122.727%;
}

.hero_style__one .hero_highlighted__text {
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 120px;
  line-height: 103.333%;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero_style__one h4 {
  font-size: 32px;
  line-height: 125%;
  margin-top: 4px;
}

.hero_style__one .hero-buttons {
  margin-top: 40px;
}

@media screen and (max-width: 992px) {
  .hero_style__one .hero__title {
    font-size: 30px;
  }
  .hero_style__one .hero_highlighted__text {
    font-size: 74px;
  }
  .hero_style__one h4 {
    font-size: 24px;
  }
}

@media screen and (max-width: 576px) {
  .hero_style__one .hero__title {
    font-size: 28px;
  }
  .hero_style__one .hero_highlighted__text {
    font-size: 60px;
  }
  .hero_style__one h4 {
    font-size: 20px;
  }
}

.mouse-icon {
  border: 2px solid var(--color-black);
  border-radius: 16px;
  height: 30px;
  width: 19px;
  display: block;
  z-index: 10;
  margin: 0 auto;
  margin-top: 60px;
  opacity: .8;
}

.mouse-icon.v-dark {
  border: 2px solid #fff;
}

.mouse-icon.v-dark .wheel {
  background: #fff;
}

.mouse-icon .wheel {
  -webkit-animation-name: drop;
          animation-name: drop;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  position: relative;
  border-radius: 10px;
  background: var(--color-black);
  width: 2px;
  height: 6px;
  border-radius: 44px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}

@-webkit-keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

@keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

.v-dark.hero_style__one {
  background: var(--color-black);
  color: #fff;
}

/* ==================
Hero Style end
==================*/
/* ==================
intro Style Start
==================*/
.intro-style-one {
  background: #F55837;
  color: #fff;
}

.intro-text-content {
  max-width: 870px;
  margin: 0 auto;
}

.intro-text-content .intro-pin {
  position: absolute;
  right: 102%;
  top: 4px;
}

.intro-text-content p {
  font-size: 14px;
}

.intro-text-content h3 {
  line-height: 122.727%;
  margin-top: 14px;
}

.intro-text-content h3 a {
  color: var(--color-black);
  text-decoration: underline;
}

@media screen and (max-width: 992px) {
  .intro-text-content h3 {
    font-size: 34px;
  }
}

@media screen and (max-width: 576px) {
  .intro-text-content h3 {
    font-size: 24px;
  }
}

.expertise-wrap {
  margin-top: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.expertise-wrap h5 {
  font-size: 18px;
  font-family: var(--ff-red-hat);
  line-height: 144.444%;
}

.expertise-wrap .skill-list {
  padding-top: 6px;
}

.expertise-wrap .skill-list li {
  margin-right: 20px;
  margin-top: 6px;
  display: inline-block;
  font-size: 20px;
  font-family: var(--ff-Marcellus);
  line-height: 130%;
  position: relative;
}

.expertise-wrap .skill-list li:last-child {
  margin-right: 0;
}

.expertise-wrap .skill-list li:last-child::before {
  display: none;
}

.expertise-wrap .skill-list li::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 3px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  right: -10px;
}

@media screen and (max-width: 992px) {
  .expertise-wrap h5 {
    font-size: 16px;
  }
  .expertise-wrap .skill-list li {
    font-size: 18px;
  }
}

.fun__counter {
  margin-top: 40px;
}

@media screen and (max-width: 992px) {
  .fun__counter {
    margin-top: 30px;
  }
}

.single-funt-count h4 {
  font-size: 44px;
  line-height: 122.727%;
}

.single-funt-count p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 142.857%;
}

@media screen and (max-width: 992px) {
  .single-funt-count h4 {
    font-size: 34px;
  }
}

@media screen and (max-width: 576px) {
  .single-funt-count h4 {
    font-size: 24px;
  }
}

/* ==================
intro Style end
==================*/
/* ==================
About Style Start
==================*/
.about-content p {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: rgba(13, 12, 11, 0.8);
  margin-top: 16px;
  max-width: 500px;
}

.about-content .about__btn {
  margin-top: 30px;
}

/* ==================
About Style end
==================*/
/* ==================
Client Style start
==================*/
.clinet-style-one {
  padding-top: 60px;
}

@media screen and (max-width: 576px) {
  .clinet-style-one {
    padding-top: 50px;
  }
}

.client-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding-left: 32px;
}

/* ==================
Client Style end
==================*/
/* ==================
Portfolio Style start
==================*/
.portfolio-card .portfolio-img {
  overflow: hidden;
}

.portfolio-card .portfolio-img img {
  width: 100%;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.portfolio-card .portfolio-disc {
  margin-top: 12px;
}

.portfolio-card .portfolio-disc .portfolio-meta {
  position: relative;
  padding-left: 40px;
}

.portfolio-card .portfolio-disc .portfolio-meta::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(14, 13, 12, 0.7);
  top: 64%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.portfolio-card .portfolio-disc .portfolio-meta li {
  padding-right: 12px;
  padding-top: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: rgba(14, 13, 12, 0.7);
  font-family: var(--ff-Marcellus);
  display: inline-block;
}

.portfolio-card .portfolio-disc .portfolio-title {
  margin-top: 8px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-black);
  font-family: var(--ff-Marcellus);
}

.portfolio-card .portfolio-disc .portfolio-title a {
  color: inherit;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

@media screen and (max-width: 992px) {
  .portfolio-card .portfolio-disc .portfolio-title {
    font-size: 20px;
  }
}

.portfolio-card:hover .portfolio-img img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.portfolio-card:hover .portfolio-disc .portfolio-title a {
  color: var(--color-brand);
}

.portfolio-card.v-dark .portfolio-disc .portfolio-title {
  color: #fff;
}

.portfolio-card.v-dark .portfolio-disc .portfolio-meta::before {
  background: #fff;
}

.portfolio-card.v-dark .portfolio-disc .portfolio-meta li {
  color: #fff;
}

.modal-info {
  padding-bottom: 30px;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .modal-info {
    padding-bottom: 20px;
    padding-top: 0px;
  }
}

.modal-info-box h5 {
  font-size: 20px;
  margin-bottom: 4px;
}

.modal-info-box p {
  color: rgba(13, 12, 11, 0.8);
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .modal-info-box h5 {
    font-size: 18px;
  }
}

/* ==================
Portfolio Style end
==================*/
/* ==================
Working Style Start
==================*/
.process-content {
  padding: 80px 100px;
  background: var(--color-brand);
}

@media screen and (max-width: 1200px) {
  .process-content {
    padding: 60px 80px;
  }
}

@media screen and (max-width: 992px) {
  .process-content {
    padding: 50px 60px;
  }
}

@media screen and (max-width: 576px) {
  .process-content {
    padding: 40px 40px;
  }
}

.process-step {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step h5 {
  font-size: 20px;
  line-height: 130%;
}

.process-step h3 {
  margin-top: 18px;
  font-size: 32px;
  line-height: 125%;
}

@media screen and (max-width: 992px) {
  .process-step h5 {
    font-size: 18px;
  }
  .process-step h3 {
    font-size: 28px;
  }
}

@media screen and (max-width: 576px) {
  .process-step h5 {
    font-size: 16px;
  }
  .process-step h3 {
    font-size: 24px;
  }
}

/* ==================
Working Style end
==================*/
/* ==================
footer style start
==================*/
.footer__title {
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 100px;
  line-height: 103.333%;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .footer__title {
    font-size: 70px;
  }
}

@media screen and (max-width: 576px) {
  .footer__title {
    font-size: 44px;
  }
}

.footer-style-one {
  padding-bottom: 48px;
  background: var(--color-black);
}

.footer-style-one.v-dark {
  background: #191816;
}

.footer-bottom-content {
  background: var(--color-brand);
  padding: 36.5px 40px;
  padding-right: 20px;
}

@media screen and (max-width: 992px) {
  .footer-bottom-content {
    padding: 30px 25px;
  }
}

.footer-social-wrap {
  font-size: 32px;
  line-height: 125%;
  color: #fff;
  font-family: var(--ff-Marcellus);
  vertical-align: middle;
}

.footer-social-wrap span {
  vertical-align: middle;
}

.footer-social-wrap a {
  color: inherit;
}

@media screen and (max-width: 992px) {
  .footer-social-wrap {
    font-size: 28px;
  }
}

@media screen and (max-width: 992px) {
  .footer-social-wrap {
    font-size: 24px;
  }
}

.wave {
  -webkit-animation-name: wave-animation;
          animation-name: wave-animation;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 70% 70%;
          transform-origin: 70% 70%;
  display: inline-block;
}

@-webkit-keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.footer-social-links li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  padding: 0 25px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-links li:last-child {
  border-right: 0;
}

.footer-social-links li a {
  font-size: 20px;
  font-family: var(--ff-Marcellus);
  line-height: 1.3;
  display: inline-block;
  color: inherit;
  margin-bottom: 2px;
}

.footer-social-links li span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 142.857%;
}

@media screen and (max-width: 992px) {
  .footer-social-links li {
    padding: 0 18px;
  }
  .footer-social-links li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer-social-links li a {
    font-size: 18px;
  }
}

.contact_input input,
.contact_input textarea {
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 50px;
  background: transparent;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.contact_input input::-webkit-input-placeholder,
.contact_input textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.contact_input input:-ms-input-placeholder,
.contact_input textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.contact_input input::-ms-input-placeholder,
.contact_input textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.contact_input input::placeholder,
.contact_input textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.contact_input input:focus,
.contact_input textarea:focus {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 992px) {
  .contact_input input,
  .contact_input textarea {
    height: 44px;
  }
}

.contact_input textarea {
  height: auto;
}

/* ==================
footer style end
==================*/
/* ==================
Pricing Style Start
==================*/
.pricing-card {
  background: #fff;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(13, 12, 11, 0.1);
          box-shadow: 0px 4px 12px 0px rgba(13, 12, 11, 0.1);
  padding: 34px 30px;
  color: var(--color-black);
  -webkit-transition: all .3s;
  transition: all .3s;
  min-height: 510px;
}

.pricing-card.v-dark {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: var(--color-black);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card.v-dark .pricing-card-header .pricing-header-content span {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-card.v-dark .pricing-card-body .purchase-btn a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.pricing-card .pricing-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pricing-card .pricing-card-header .quality-icon {
  -webkit-transition: all .25s;
  transition: all .25s;
}

.pricing-card .pricing-card-header .quality-icon img {
  max-width: 80px;
}

.pricing-card .pricing-card-header .pricing-header-content p {
  font-size: 14px;
  line-height: 142.857%;
  font-weight: 500;
}

.pricing-card .pricing-card-header .pricing-header-content h5 {
  margin-top: 12px;
  font-size: 20px;
  line-height: 130%;
}

.pricing-card .pricing-card-header .pricing-header-content span {
  color: rgba(13, 12, 11, 0.6);
  font-size: 14px;
  line-height: 142.857%;
  display: block;
}

.pricing-card .pricing-card-body {
  margin-top: 18px;
}

.pricing-card .pricing-card-body .card-price {
  line-height: 122.727%;
}

.pricing-card .pricing-card-body .card-price span {
  font-size: 20px;
}

.pricing-card .pricing-card-body .purchase-btn {
  margin-top: 10px;
}

.pricing-card .pricing-card-body .purchase-btn a {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 106.667%;
  color: #0D0C0B;
  padding: 18px 40px;
  border: 1px solid #0D0C0B;
  border-radius: 40px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pricing-card .pricing-card-body .purchase-btn a:hover {
  background: var(--color-black);
  color: #fff;
}

.pricing-card.popular {
  background: var(--color-brand);
  color: #fff;
}

.pricing-card.popular .pricing-card-header .pricing-header-content span {
  color: #fff;
}

.pricing-card.popular .pricing-card-body .purchase-btn a {
  background: #fff;
  border: 1px solid #fff;
  color: var(--color-black);
}

.pricing-card:hover {
  -webkit-box-shadow: 0px 6px 14px 0px rgba(13, 12, 11, 0.2);
          box-shadow: 0px 6px 14px 0px rgba(13, 12, 11, 0.2);
}

.pricing-card:hover .pricing-card-header .quality-icon {
  -webkit-transform: translateY(-5px) rotate3d(1, 1, 1, 360deg);
          transform: translateY(-5px) rotate3d(1, 1, 1, 360deg);
}

@media screen and (max-width: 992px) {
  .pricing-card .pricing-card-body .card-price {
    font-size: 34px;
  }
  .pricing-card .pricing-card-body .card-price span {
    font-size: 18px;
  }
  .pricing-card .pricing-card-body .purchase-btn a {
    font-size: 14px;
    padding: 16px 30px;
  }
}

@media screen and (max-width: 576px) {
  .pricing-card {
    padding: 28px 26px;
  }
}

/* ==================
Pricing Style End
==================*/
/* ==================
Testimonial Style Start
==================*/
.testimonial-card {
  border: 1px solid rgba(13, 12, 11, 0.1);
  background: #fff;
  padding: 36px 30px;
}

.testimonial-card.v-dark {
  background: #1A1816;
  color: #fff;
}

.testimonial-card .qoute-icon {
  color: var(--color-brand);
}

.testimonial-card .qoute-icon svg,
.testimonial-card .qoute-icon img,
.testimonial-card .qoute-icon i {
  max-width: 48px;
}

.testimonial-card .testimonial-disc {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 12px;
}

.testimonial-card .reviewer {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 16px;
}

@media screen and (max-width: 992px) {
  .testimonial-card {
    padding: 30px 24px;
    padding-top: 26px;
  }
  .testimonial-card .testimonial-disc {
    font-size: 18px;
  }
}

/* ==================
Testimonial Style Start End
==================*/
/* ==================
Blog Style Start
==================*/
.blog-card {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(13, 12, 11, 0.1);
  padding-top: 24px;
}

.blog-card.v-dark {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-card.v-dark .blog-meta li::before {
  background: #fff;
}

.blog-card.v-dark .blog-disc {
  color: #fff;
}

.blog-card:first-child {
  padding-top: 0;
}

.blog-card .blog-meta li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding-right: 24px;
  position: relative;
  margin-top: 8px;
}

.blog-card .blog-meta li:last-child {
  padding-right: 0;
}

.blog-card .blog-meta li:last-child::before {
  display: none;
}

.blog-card .blog-meta li::before {
  position: absolute;
  content: "";
  right: 8px;
  height: 2px;
  width: 2px;
  background: var(--color-black);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-card .blog-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 32px;
  margin-top: 8px;
  line-height: 125%;
}

.blog-card .blog-title a {
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.blog-card .blog-title a:hover {
  color: var(--color-brand);
}

.blog-card .blog-disc {
  font-size: 16px;
  line-height: 150%;
  color: rgba(13, 12, 11, 0.8);
  margin-top: 8px;
}

@media screen and (max-width: 992px) {
  .blog-card .blog-title {
    font-size: 28px;
  }
  .blog-card .blog-disc {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .blog-card .blog-title {
    font-size: 24px;
  }
}

.modal-close {
  font-size: 22px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

@media screen and (max-width: 768px) {
  .modal-close {
    font-size: 18px;
    height: 32px;
    width: 32px;
    -webkit-transform: translate(-30%, 30%);
            transform: translate(-30%, 30%);
  }
}

.v-dark .modal-info-box p {
  color: rgba(255, 255, 255, 0.8);
}

.v-dark.blog-modal .modal-content .blog-meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.v-dark.blog-modal .modal-content .blog-meta li {
  color: rgba(255, 255, 255, 0.8);
}

.v-dark.blog-modal .modal-content .blog-meta li::before {
  background: white;
}

.v-dark .modal-close {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
}

.v-dark.blog-modal .modal-content .blog-disc h1, .v-dark.blog-modal .modal-content .blog-disc h2, .v-dark.blog-modal .modal-content .blog-disc h3, .v-dark.blog-modal .modal-content .blog-disc h4, .v-dark.blog-modal .modal-content .blog-disc h5 {
  color: white;
}

.v-dark.blog-modal .modal-content .blog-disc p {
  color: rgba(255, 255, 255, 0.8);
}

.v-dark.blog-modal .modal-content .blog-disc ul li {
  color: rgba(255, 255, 255, 0.8);
}

.commom-modal.v-dark .modal-content {
  background: #1A1816;
}

.commom-modal .modal-dialog {
  max-width: 1000px;
  position: relative;
}

.commom-modal .modal-dialog .modal-content {
  border-radius: 0;
  padding: 50px;
}

@media screen and (max-width: 992px) {
  .commom-modal .modal-dialog .modal-content {
    padding: 30px;
  }
}

@media screen and (max-width: 576px) {
  .commom-modal .modal-dialog .modal-content {
    padding: 20px;
  }
}

.commom-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.blog-modal .modal-content .blog-title {
  padding-bottom: 20px;
  font-size: 38px;
}

@media screen and (max-width: 992px) {
  .blog-modal .modal-content .blog-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 576px) {
  .blog-modal .modal-content .blog-title {
    font-size: 24px;
  }
}

.blog-modal .modal-content .blog-thumb img {
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-modal .modal-content .blog-meta {
  padding-top: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(13, 12, 11, 0.1);
  margin-bottom: 20px;
}

.blog-modal .modal-content .blog-meta li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding-right: 24px;
  position: relative;
  margin-top: 8px;
  text-transform: uppercase;
}

.blog-modal .modal-content .blog-meta li:last-child {
  padding-right: 0;
}

.blog-modal .modal-content .blog-meta li:last-child::before {
  display: none;
}

.blog-modal .modal-content .blog-meta li::before {
  position: absolute;
  content: "";
  right: 8px;
  height: 2px;
  width: 2px;
  background: var(--color-black);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-modal .modal-content .blog-disc ul {
  padding-bottom: 20px;
}

.blog-modal .modal-content .blog-disc ul li {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(13, 12, 11, 0.8);
  margin-top: 2px;
}

.blog-modal .modal-content .blog-disc ul li:first-child {
  margin-top: 0;
}

.blog-modal .modal-content .blog-disc ul li i {
  vertical-align: middle;
  margin-right: 4px;
}

.blog-modal .modal-content .blog-disc h1, .blog-modal .modal-content .blog-disc h2, .blog-modal .modal-content .blog-disc h3, .blog-modal .modal-content .blog-disc h4, .blog-modal .modal-content .blog-disc h5 {
  color: var(--color-black);
  padding-bottom: 14px;
}

.blog-modal .modal-content .blog-disc .text-xl {
  font-size: 24px;
}

.blog-modal .modal-content .blog-disc p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(13, 12, 11, 0.8);
  padding-bottom: 20px;
}

.blog-modal .modal-content .blog-disc blockquote {
  font-size: 24px;
  padding: 30px 40px;
  font-family: var(--ff-Marcellus);
  background: var(--color-brand);
  color: #fff;
  margin-bottom: 20px;
}

.blog-modal .modal-content .blog-disc blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 16px;
}

@media screen and (max-width: 992px) {
  .blog-modal .modal-content .blog-disc .text-xl {
    font-size: 18px;
  }
  .blog-modal .modal-content .blog-disc blockquote {
    font-size: 18px;
    padding: 20px 24px;
  }
  .blog-modal .modal-content .blog-disc p {
    font-size: 14px;
  }
}

/* ==================
Blog Style End
==================*/
/* ==================
Service Style Start
==================*/
.service-style-one {
  background: rgba(23, 21, 19, 0.05);
}

.service-style-one.v-dark {
  background: #1A1816;
}

.single-service {
  padding-top: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(13, 12, 11, 0.1);
}

.single-service .service-index {
  font-size: 20px;
  line-height: 130%;
  margin-top: 7px;
}

.single-service .service-name {
  font-size: 44px;
  line-height: 122.727%;
  text-transform: uppercase;
}

.single-service .service-name a {
  color: rgba(13, 12, 11, 0.8);
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.single-service .service-name.v-dark a {
  color: #fff;
}

.single-service .service-disc {
  font-size: 16px;
  line-height: 1.5;
}

.single-service .service-list {
  padding-top: 12px;
}

.single-service .service-list li {
  font-weight: 500;
  margin-top: 4px;
  font-size: 14px;
}

.single-service:hover .service-name a {
  color: var(--color-brand);
}

@media screen and (max-width: 992px) {
  .single-service .service-index {
    font-size: 18px;
  }
  .single-service .service-name {
    font-size: 34px;
  }
}

@media screen and (max-width: 576px) {
  .single-service .service-name {
    font-size: 28px;
  }
}

/* ==================
Service Style End
==================*/
.inner-logo {
  padding-top: 40px;
}

.inner-contact-options .contact-box-inner {
  font-weight: 600;
  font-size: 15px;
  color: #2d373c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  padding-top: 8px;
}

.inner-contact-options .contact-box-inner a {
  color: inherit;
  display: inline-block;
}

.inner-contact-options .contact-box-inner i {
  margin-right: 10px;
  color: #2d373c;
}

.section-link.section-active {
  color: var(--color-brand) !important;
}

/*header-defult*/
header .header-defult .main-nav ul li .sub-menu {
  -webkit-box-shadow: rgba(12, 12, 50, 0.1) 0px 4px 10px, rgba(12, 12, 20, 0.02) 0px 8px 32px;
          box-shadow: rgba(12, 12, 50, 0.1) 0px 4px 10px, rgba(12, 12, 20, 0.02) 0px 8px 32px;
  position: absolute;
  left: 0;
  top: auto;
  right: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  opacity: 0;
  z-index: 9999;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header .header-defult .main-nav ul li .sub-menu li .sub-menu {
  right: -200px;
  left: inherit;
  top: 0;
}

header .header-defult .main-nav ul li .sub-menu > li {
  display: block;
  margin: 0;
  position: relative;
}

header .header-defult .main-nav ul > li a:hover {
  background: transparent;
  color: var(--primary-purple) !important;
}

header .header-defult .main-nav .fl {
  width: 30px;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: #2d373c;
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 0;
  z-index: 999;
  display: none;
  cursor: pointer;
}

header .header-defult .main-nav .fl:before {
  font-size: 14px;
  text-align: center;
  line-height: 35px;
}

header .header-defult .main-nav > ul > li + li > .sub-menu {
  left: 15px;
}

header .header-defult .main-nav > ul > li:hover > .sub-menu {
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: visible;
  opacity: 1;
}

header .header-defult .main-nav ul li .sub-menu li:hover > .sub-menu,
header .header-defult .main-nav ul li .sub-menu li .sub-menu li:hover > .sub-menu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

header .header-defult .main-nav ul {
  margin: 0;
  list-style: none;
}

header .header-defult .main-nav ul li {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}

header .header-defult .main-nav ul li:last-child {
  padding-right: 0;
}

header .header-defult .main-nav ul li:hover > a {
  color: var(--primary-purple);
}

header .header-defult .main-nav ul li:hover > a::before {
  opacity: 1;
  background: #f96822;
}

header .header-defult .main-nav ul li a {
  display: block;
  text-transform: capitalize;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 30.5px 0;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-black);
}

header .header-defult .main-nav ul li ul.sub-menu > li {
  padding: 0;
}

header .header-defult .main-nav ul li ul.sub-menu > li a {
  display: block;
  padding: 15px 10px;
  color: #162b32;
  line-height: 1;
  text-transform: capitalize;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .header-defult .main-nav ul li ul.sub-menu > li a.active {
  color: #f96822;
  font-weight: 600;
}

header .header-defult .main-nav ul li ul.sub-menu > li a:hover {
  background: transparent;
  color: var(--primary-purple) !important;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

header .header-defult .main-nav ul li ul.sub-menu > li a:hover::before {
  opacity: 0;
}

header .header-defult .main-nav ul li.has-child-menu:after {
  position: absolute;
  right: 0;
  color: var(--text-bright-gray);
  font-family: bootstrap-icons !important;
  content: "\f282";
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 36px;
  transition: all 0.5s ease-in-out;
}

header .header-defult .main-nav ul li:hover.has-child-menu:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

header .header-defult .main-nav > ul > li > a.active {
  color: #f96822;
  font-weight: 600;
  font-size: 16px;
}

header .header-defult .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

header .header-defult .nav-right a {
  margin-right: 24px;
}

header .header-defult .nav-right a:last-child {
  margin-right: 0;
}

header .header-defult {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 10px;
}

.header-area {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 21;
  padding: 0;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.v-dark.header-area.sticky {
  background: rgba(13, 12, 11, 0.9);
}

header .header-defult.sticky .main-nav ul li a {
  padding: 18.5px 0;
}

header .header-defult.sticky .main-nav ul li.has-child-menu:after {
  top: 22px;
}

@media only screen and (max-width: 1199px) {
  header .v-dark.header-defult .hamburger span {
    background: #fff !important;
  }
  header .v-dark.header-defult .main-nav {
    background: var(--color-black);
  }
  header .v-dark.header-defult .main-nav > ul > li > a {
    color: #fff !important;
  }
  header .header-defult .hamburger {
    display: block !important;
    position: relative;
    width: 28px !important;
    height: 22px !important;
    margin: 8px 0;
    cursor: pointer;
    border: 3px solid transparent !important;
    float: right;
  }
  header .header-defult .hamburger:focus {
    border: 3px solid transparent !important;
  }
  header .header-defult .hamburger span {
    width: 100%;
    height: 1px;
    background: #000000 !important;
    display: block;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .header-defult .hamburger span.h-top {
    top: 0;
  }
  header .header-defult .hamburger span.h-bottom {
    bottom: 0;
    width: 100%;
  }
  header .header-defult .hamburger span.h-middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  header .header-defult .hamburger.h-active span {
    width: 80%;
  }
  header .header-defult .hamburger.h-active span.h-top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
  }
  header .header-defult .hamburger.h-active span.h-middle {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
  }
  header .header-defult .hamburger.h-active span.h-bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
  }
  header .header-defult .main-nav ul li ul.sub-menu > li a::before {
    position: absolute;
    width: 4px !important;
    height: 4px;
    content: "";
    background-color: #F55837;
    opacity: 1;
    border-radius: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header .header-defult .main-nav {
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
            box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    padding: 10px 15px !important;
    z-index: 99999;
    min-height: 100vh !important;
    overflow: auto;
    background: #fff;
    -webkit-transform: translateX(-260px);
            transform: translateX(-260px);
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  }
  header .header-defult .main-nav > ul > li > a {
    font-size: 16px !important;
    color: #2D373C !important;
    line-height: 35px;
    margin: 10px 0;
  }
  header .header-defult .main-nav ul li a {
    padding: 0 !important;
  }
  header .header-defult .main-nav ul li a::before {
    bottom: 0rem !important;
  }
  header .header-defult .main-nav ul > li a.active::before {
    opacity: 1 !important;
  }
  header .header-defult .main-nav ul > li a:hover {
    background: transparent;
  }
  header .header-defult .main-nav > ul > li.has-child-menu:after {
    display: none !important;
  }
  header .header-defult .main-nav.slidenav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  header .header-defult .main-nav > ul {
    float: none;
    padding: 25px 10px 25px 0;
    margin-top: 40px !important;
  }
  header .header-defult .main-nav > ul > li {
    display: block;
    padding: 0;
    margin-left: 0;
  }
  header .header-defult .main-nav > ul > li.has-child-menu:after,
  header .header-defult .main-nav > ul > li > a:after {
    content: none;
  }
  header .header-defult .main-nav > ul > li a {
    font-size: 16px;
    color: #fff;
    line-height: 35px;
  }
  header .header-defult .main-nav ul li .fl {
    display: block;
    line-height: 35px;
  }
  header .header-defult .main-nav ul li .sub-menu {
    position: static;
    min-width: 200px;
    background: transparent;
    border: none;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    display: none;
  }
  header .header-defult .main-nav ul li .sub-menu > li a {
    display: block;
    padding: 10px 0;
    color: #707070;
    border: none;
    line-height: 0.8;
    font-size: 14px;
    text-decoration: none;
    padding-left: 18px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .header-defult li a.active {
    color: #ddd;
    font-weight: 600;
    font-size: 1.5rem;
  }
  header .header-defult li a.active::before {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    opacity: 0 !important;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  header .header-defult .main-nav ul li {
    display: block;
    position: relative;
    padding: 0 20px;
  }
  .mobile-menu {
    padding: 0 7px;
    margin: 10px 0;
  }
  .single-feature-style-two .float-screen-two {
    left: 0;
    top: 10%;
  }
}

.has-child-menu .has-child-menu::after {
  top: 15px !important;
  right: 10px !important;
}

@media screen and (max-width: 1200px) {
  .has-child-menu .has-child-menu::after {
    display: none;
  }
}

header .v-dark.header-defult .main-nav ul li a {
  color: #fff;
}

.text_gradient {
  position: relative;
}

.text_gradient .inn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: -webkit-gradient(linear, right top, left top, from(#FF9D42), color-stop(50.91%, #FF6069), to(#B16CEA));
  background: linear-gradient(270deg, #FF9D42 0%, #FF6069 50.91%, #B16CEA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.text_gradient .or {
  opacity: .5;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.text_gradient .or.disable {
  opacity: 0;
}

.inn.waypoint_effect.load {
  width: 100%;
}

.text_gradient {
  display: inline;
  background: -webkit-gradient(linear, right top, left top, from(var(--color-black)), color-stop(50.91%, var(--color-black)), to(var(--color-black)));
  background: linear-gradient(270deg, var(--color-black) 0%, var(--color-black) 50.91%, var(--color-black) 100%);
  -webkit-text-decoration-color: var(--color-black) !important;
          text-decoration-color: var(--color-black) !important;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.1);
  font-variant-numeric: lining-nums proportional-nums;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  text-decoration: underline;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}
