@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(./../fonts/TitilliumWeb-ExtraLight.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(./../fonts/TitilliumWeb-Light.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./../fonts/TitilliumWeb-Regular.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(./../fonts/TitilliumWeb-SemiBold.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(./../fonts/TitilliumWeb-Bold.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  font-family: "Titillium Web", sans-serif;
  background: #fff;
}
:root {
  --max-height: 0;
}
.theme-container {
  max-width: 1480px;
  padding: 0 20px;
}
::-moz-selection {
  /* Code for Firefox */
  color: #0c0c0c;
  background: #ff9776;
}
::selection {
  color: #0c0c0c;
  background: #ff9776;
}
.overflow-style-none::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.overflow-style-none {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.counter:not(.is-visible) {
  visibility: hidden;
}
/* cursor pointer animation */
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 100;
  background-color: #fe5d14;
  -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;
  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;
  mix-blend-mode: difference;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: #fe5d14;
  opacity: 0.3;
  mix-blend-mode: difference;
}
.cursor-outer {
  margin-left: -20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  border: 2px solid #fe5d14;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
  mix-blend-mode: difference;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}
/* dropdown menu */
.nav-wrapper ul li {
  position: relative;
}
.nav-wrapper ul li ul {
  position: absolute;
  left: -10px;
  min-width: 200px;
  border-radius: 10px;
  background: white;
  padding: 10px 0;
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  display: none;
  z-index: 999;
}
.nav-wrapper ul li:hover > a {
  transition: all 0.3s ease-in-out;
  color: #ff9776;
}
.nav-wrapper ul li:hover ul {
  display: block;
  animation: tabFade 0.5s;
}
.nav-wrapper ul li ul li a {
  padding: 5px 20px;
  color: #0c0c0c;
  transition: all 0.5s ease-in-out;
  display: block;
  font-weight: bold;
}
.nav-wrapper ul li ul li:hover a {
  padding-left: 30px;
  color: #0c0c0c;
}
.nav-wrapper ul li ul li {
  position: relative;
}
.nav-wrapper ul li ul li:before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #ff9776;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transition: all 0.5s ease-in-out;
}
.nav-wrapper ul li ul li:hover:before {
  width: 20px;
}
@keyframes tabFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.nav-wrapper ul li a.has-submenu .icon {
  position: absolute;
  right: -10px;
  top: 2px;
}
.nav-wrapper.nav-wrapper-two ul li a.has-submenu .icon {
  position: absolute;
  right: -15px;
  top: 2px;
}
/*popv component*/
.popv-main-wrapper {
  display: none;
}
.popv-main-wrapper.active {
  display: block;
}
.popv-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.popv-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.popv-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.popv-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.popv-align-top .popv-container:before {
  display: none;
}

.popv-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.popv-inline-holder .popv-content,
.popv-ajax-holder .popv-content {
  width: 100%;
  cursor: auto;
}

.popv-ajax-cur {
  cursor: progress;
}

.popv-zoom-out-cur,
.popv-zoom-out-cur .popv-image-holder .popv-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.popv-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.popv-auto-cursor .popv-content {
  cursor: auto;
}

.popv-close,
.popv-arrow,
.popv-preloader,
.popv-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.popv-loading.popv-figure {
  display: none;
}

.popv-hide {
  display: none !important;
}

.popv-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.popv-preloader a {
  color: #ccc;
}

.popv-preloader a:hover {
  color: #fff;
}

.popv-s-ready .popv-preloader {
  display: none;
}

.popv-s-error .popv-content {
  display: none;
}

button.popv-close,
button.popv-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.popv-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.popv-close:hover,
.popv-close:focus {
  opacity: 1;
}

.popv-close:active {
  top: 1px;
}

.popv-close-btn-in .popv-close {
  color: #333;
}

.popv-image-holder .popv-close,
.popv-iframe-holder .popv-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.popv-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.popv-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.popv-arrow:active {
  margin-top: -54px;
}

.popv-arrow:hover,
.popv-arrow:focus {
  opacity: 1;
}

.popv-arrow:before,
.popv-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.popv-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.popv-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.popv-arrow-left {
  left: 0;
}

.popv-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.popv-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.popv-arrow-right {
  right: 0;
}

.popv-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.popv-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.popv-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.popv-iframe-holder .popv-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.popv-iframe-holder .popv-close {
  top: -40px;
}

.popv-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.popv-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Loader Styles start here */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #fff6f3;
  --outer-line-color: #ff9776;
  --middle-line-color: #ab553a;
  --inner-line-color: #ea7b59;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  /*   transform: translate(-50%, -50%); */
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}
.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/*hero*/
.hero-main {
  background-image: url("./../images/hero-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-main .hero-one-social-tab-item .hero-one-social-tab-button {
  color: #0c0c0c;
  transition: all 0.5s ease-in-out;
}
.hero-main .hero-one-social-tab-item.active .hero-one-social-tab-button {
  color: #fff;
}
.hero-main .hero-one-social-tab-item .hero-one-social-tab-body {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.hero-main .hero-one-social-tab-item.active .hero-one-social-tab-body {
  opacity: 1;
}
.about-shape-1 {
  position: absolute;
  left: 0;
  top: 250px;
  z-index: 1;
  -webkit-animation: animationFramesOne 20s linear infinite;
  animation: animationFramesOne 20s linear infinite;
}

.about-shape-2 {
  position: absolute;
  left: 80px;
  z-index: 1;
  top: 480px;
  -webkit-animation: animationFramesThree 25s linear infinite;
  animation: animationFramesThree 25s linear infinite;
}

.about-shape-3 {
  position: absolute;
  bottom: 120px;
  right: 320px;
  z-index: 1;
  -webkit-animation: animationFramesFour 25s linear infinite;
  animation: animationFramesFour 25s linear infinite;
}
.about-shape-4 {
  position: absolute;
  bottom: 120px;
  right: 320px;
  z-index: 1;
  -webkit-animation: animationFramesOthers 25s linear infinite;
  animation: animationFramesOthers 25s linear infinite;
}
@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
    transform: translate(0) rotate(0deg) scale(1);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
    transform: translate(0) rotate(0deg) scale(1);
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
  }
}

@keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
    transform: translate(165px, -179px);
  }

  to {
    -webkit-transform: translate(-346px, 617px);
    transform: translate(-346px, 617px);
  }
}

@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }

  to {
    -webkit-transform: translate(-346px, 617px);
  }
}
@keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
    transform: translate(-300px, 151px) rotate(0deg);
  }

  to {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
    transform: translate(251px, -200px) rotate(180deg);
  }
}

@-webkit-keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
  }

  to {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}
@keyframes animationFramesOthers {
  0% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
    transform: translate(251px, -200px) rotate(180deg);
  }

  to {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
    transform: translate(-300px, 151px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesOthers {
  0% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
    transform: translate(251px, -200px) rotate(180deg);
  }

  to {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
    transform: translate(-300px, 151px) rotate(0deg);
  }
}
.accordion-2 .tab-body,
.accordion .tab-body {
  display: block;
  transition: max-height 0.5s;
  overflow: hidden;
  max-height: 0;
}
.accordion-2 .tab-btn.active + .tab-body,
.accordion .tab-btn.active + .tab-body {
  max-height: var(--max-height);
}
:is(.accordion-2, .accordion) .tab-btn.active span > svg {
  transform: rotate(-40deg);
}
:is(.accordion-2, .accordion) .tab-btn span > svg {
  transform: rotate(0deg);
  transition: all 0.5s;
}
.footer-wrapper {
  background-image: url("./../images/footerBg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.marquee-anim {
  animation: mquee 30s linear infinite;
}
.marquee-anim.marquee-anim-two {
  animation: mquee 70s linear infinite;
}
@keyframes mquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.primary-button {
  transition: all 0.2s ease-in-out;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.primary-button:hover {
  color: #fff;
}
.primary-button .round {
  border-radius: 50%;
  background-color: #0c0c0c;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 10;
  animation: scale-down 0.2s forwards;
}
.primary-button.primary-v2-button:hover {
  color: #0c0c0c;
}
.primary-button.primary-v2-button .round {
  background-color: #fff;
}
.primary-button.primary-v3-button:hover {
  color: #0c0c0c;
}
.primary-button.primary-v3-button .round {
  background-color: #ff9776;
}
.primary-button.animate .round {
  animation: scale-up 0.5s forwards;
}

@keyframes scale-up {
  to {
    transform: scale(600);
  }
}

@keyframes scale-down {
  from {
    transform: scale(600);
  }
  to {
    ransform: scale(0);
  }
}
.inner-page-title-wrapper {
  background-image: url("./../images/inner-title-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -300px;
}
.about-gradient-bg {
  background-image: url("./../images/about-bg-shape.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#project-tab-wrapper .project-tab-btn {
  background: transparent;
}
#project-tab-wrapper .project-tab-btn.active {
  background: #ff9776 !important;
}
#project-tab-wrapper .project-tab-body {
  display: none;
  animation: tabFade 1s;
}
#project-tab-wrapper .project-tab-body.active {
  display: block;
}
@keyframes tabFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.write-comment-wrapper {
  background-image: url("./../images/write-comment-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#testimonial-section :is(.swiper-button-next, .swiper-button-prev) {
  position: unset;
  width: auto;
  height: auto;
}
#testimonial-section .swiper-button-prev:after,
#testimonial-section .swiper-rtl .swiper-button-next:after {
  content: "";
}
#testimonial-section .swiper-button-next:after,
#testimonial-section .swiper-rtl .swiper-button-prev:after {
  content: "";
}
.service-details-text {
  background-image: url("./../images/faq-bg.png");
}
/* drawer */
.isDropdown-menu .dropdown-body {
  display: none;
}
.isDropdown-menu:focus-within .dropdown-body {
  display: block;
}
.drawer-wrapper {
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}
.drawer-wrapper.active {
  transform: translateX(0);
}

/* drawer end */
/* bo to top button */
.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999999;
  border-radius: 100px;
  color: #fff;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  mix-blend-mode: exclusion;
}
.scroll-top svg {
  font-size: 18px;
  color: #000;
}
.scroll-top:hover {
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .scroll-top {
    bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll-top {
    right: 10px;
    bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .scroll-top {
    right: 5px;
    bottom: 55px;
  }
}
/* bo to top button end */
/*responsive*/

@media (max-width: 1536px) {
}
@media (max-width: 1280px) {
}
@media (max-width: 1024px) {
  .popv-container {
    position: unset;
    height: auto;
  }
}

@media (max-width: 768px) {
  .mouse-cursor {
    display: none;
  }
}
@media (max-width: 640px) {
  .inner-page-title-wrapper {
    background-position: center;
  }
}
@media (max-width: 320px) {
  html {
    overflow-x: hidden;
  }
}

/*responsive end*/
