@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --white: #FFF;
  --black: #000;
  --dark: #111;
  --theme: #E58E08;
  --theme2: #60a0b8;
  --title: #7C7B7B;
  --yellow: #be9312eb;
  --border: #CCC;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --icon-font: "Font Awesome 6 Pro";
}

.py-22 {
  padding-top: 22px;
  padding-bottom: 22px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-30 {
  padding-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-90 {
  margin-bottom: 90px;
}

body {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26.1px;
  color: var(--black);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}

h1 {
  color: var(--White, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 75px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}

h2 {
  color: var(--900, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 47.53px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}

h3 {
  color: var(--900, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  color: var(--title);
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  color: var(--800, #7C7B7B);
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

p {
  margin: 0px;
  transition: all 0.3s;
  color: var(--800, #7C7B7B);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
}

span {
  margin: 0px;
  transition: all 0.3s;
  color: var(--black);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--black);
}

span {
  margin: 0px;
  transition: all 0.3s;
}

.fs-15 {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black);
}

@media (min-width: 1600px) {
  .container {
    max-width: 1314px;
  }
  .row.g-4 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }
}

.gx-0 {
  --bs-gutter-x: 0px;
}

.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes move-directions {
  0% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(10px);
  }
  66% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

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

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
  100% {
    width: var(--progress-width);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes spin2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes icon-anim {
  0% {
    top: 26px;
    right: 90px;
  }
  25% {
    top: 86px;
    right: 110px;
  }
  100% {
    top: 26px;
    right: 90px;
  }
}

@keyframes scaleAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}

/*----------------------------------------------
    # Helping  style here
----------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fix {
  overflow: hidden;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}
.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .mb-30 {
    margin-bottom: 20px;
  }
}

.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .mb-50 {
    margin-bottom: 30px;
  }
}

.mt-120 {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .mt-120 {
    margin-top: 80px;
  }
}

.pt-80 {
  padding-top: 80px;
}

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

.square-icon {
  width: 20px;
  height: 20px;
  background: var(--Secondary, #E58E08);
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--title);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.mouse {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.mouse-in {
  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;
}
.mouse-in.mouse-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--title);
  opacity: 0.3;
}

.mouse-out {
  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;
}
.mouse-out.mouse-hover {
  opacity: 0;
}

/*----------------------------------------------
    # Preloader style here
----------------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.preloader .loading-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loading-2 .row {
  height: 100%;
}
.preloader .loading-2 .loading-section {
  padding: 0px;
}
.preloader .loading-2 .loading-section .bg {
  background-color: var(--border);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .loading-section .bg {
  width: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  /* display: flex; */
  margin: auto;
  display: grid;
  place-items: center;
}

.loading {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-color: #7C7B7B rgba(0, 0, 0, 0);
  animation: l16 1s infinite linear;
  z-index: 999999;
}

.loading::before,
.loading::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.loading::before {
  border-color: #E58E08 rgba(0, 0, 0, 0);
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.loading::after {
  margin: 8px;
}

@keyframes l16 {
  100% {
    transform: rotate(1turn);
  }
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--title);
  outline: none;
}

input::placeholder {
  color: #767771;
}

img {
  max-width: 100%;
  height: auto;
}

.bg-mask {
  mask-size: cover;
  mask-position: center;
  background-size: cover;
  background-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
}

/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/

.search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}
.search-box button.search-close {
  width: 50px;
  height: 50px;
  line-height: 52px;
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: var(--theme);
  font-size: 22px;
  border-radius: 10px;
  transform: rotate(0);
  transition: all ease 0.4s;
  color: var(--white);
  border: 0;
}
.search-box button.search-close:hover {
  color: var(--title);
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  transform: rotate(90deg);
}
.search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
}
@media (min-width: 992px) {
  .search-box form {
    max-width: 600px;
  }
}
.search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: none;
  background-color: var(--white);
  border: 2px solid var(--theme);
  padding: 0 80px 0 30px;
  color: var(--title);
  border-radius: 50px;
}
.search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: var(--theme);
  font-size: 24px;
  right: 12px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.search-box form button:hover {
  transform: scale(1.1);
}
.search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  transition: all ease 0.4s;
  border-radius: 0;
}
.search-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}

.fs-24 {
  color: var(--900, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 9px;
}

/* 2. Header */
.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header-area .main-menu {
  justify-content: center;
}
.header-area .main-menu ul li {
  display: inline-block;
  margin-right: 42px;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 1399px) {
  .header-area .main-menu ul li {
    margin-right: 30px;
  }
}
@media (max-width: 1199px) {
  .header-area .main-menu ul li {
    margin-right: 20px;
  }
}
.header-area .main-menu ul li:hover a {
  color: var(--theme);
}
.header-area .main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 79px;
}
.header-area .main-menu ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 70px;
}
.header-area .main-menu ul li a {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  padding: 26px 0;
  display: block;
}
.header-area .main-menu ul li .sub-menu {
  position: absolute;
  top: 110px;
  left: 0;
  padding: 10px 25px;
  width: 230px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.header-area .main-menu ul li .sub-menu li {
  margin-right: 0;
  display: block;
  margin-bottom: 7px;
}
.header-area .main-menu ul li .sub-menu li:nth-child(2):hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-area .main-menu ul li .sub-menu li:nth-child(1):hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-area .main-menu ul li .sub-menu li a {
  color: black;
  padding: 0;
}
.header-area .main-menu ul li .sub-menu li a:hover {
  color: var(--theme);
}
.header-area .main-menu ul li .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.3s;
  visibility: hidden;
  top: 110%;
}
.header-area .header {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: end;
}
.header-area .header-menu button {
  font-size: 30px;
  color: var(--white);
}
.header-area .header-menu button:hover {
  color: var(--theme);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .header-area .header-menu {
    padding: 7px 15px;
  }
}

.hrv {
  background-color: var(--black);
  height: 500px;
  width: 100%;
}

@keyframes tpfadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--black);
  animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
}

.header-sticky-white {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--tp-white);
  animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
  box-shadow: 0px 20px 30px rgba(167, 167, 167, 0.1);
}

@media screen and (max-width: 576px) {
  .mobile-offcnvs {
    max-width: 100%;
  }
}
.mobile-offcnvs {
  position: fixed;
  z-index: 999;
  background: #fff;
  width: 400px;
  right: 0;
  top: 0;
  padding: 50px 40px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.mobile-offcnvs .mobile-offcnvs-sm-title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 15px;
  color: var(--black);
}
.mobile-offcnvs-header {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: space-between;
}
.mobile-offcnvs-header button i {
  font-size: 30px;
  transition: all 0.3s;
}
.mobile-offcnvs-header button i:hover {
  transform: rotate(90deg);
}
.mobile-offcnvs-info span {
  display: inline-block;
}

.mobile-offcnvs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  background: rgba(24, 24, 24, 0.4);
}
.mobile-offcnvs-overlay-open {
  visibility: visible;
  opacity: 0.7;
}
.mobile-offcnvs-close i:hover {
  color: var(--theme);
}

.mobile-offcnvs-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-offcnvs-menu {
  margin-bottom: 50px;
}
.mobile-offcnvs-menu li {
  position: relative;
}
.mobile-offcnvs-menu li i {
  color: var(--tp-heading-color);
}
.mobile-offcnvs-menu li .menu-close {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid rgba(1, 15, 28, 0.12);
  height: 30px;
  width: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 29px;
  transition: all 0.3s;
}
.mobile-offcnvs-menu li a {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.09em;
  text-transform: capitalize;
  color: var(--title);
}
.mobile-offcnvs-menu li a:hover {
  color: var(--theme);
}

.sub-menu {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .sub-menu {
    display: none;
  }
}
.sub-menu > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.active > .menu-close i {
  transform: rotate(90deg);
}

.active > .menu-close {
  background-color: var(--tp-primary-color);
}
.active > .menu-close i {
  color: var(--tp-white);
}

/* 3. hrv */
.hrv {
  position: relative;
  padding: 100px 0 80px 0px;
}
@media (min-width: 768px) {
  .hrv {
    padding: 160px 0 112px;
  }
}
@media (max-width: 767px) {
  .hrv {
    padding: 160px 0 112px;
  }
}
@media (min-width: 1200px) {
  .hrv {
    padding: 100px 0 80px 0px;
  }
}
.hrv-content {
  position: relative;
  z-index: 1;
}
.hrv-content__title {
  padding-bottom: 20px;
}
.hrv-content__title h1 {
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.hrv-thumb {
  overflow: hidden;
}
@media (max-width: 1399px) {
  .hrv-thumb {
    width: 96%;
  }
}
.hrv-thumb-imges {
  margin-left: -80px;
}
@media (max-width: 1399px) {
  .hrv-thumb-imges {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .hrv-thumb-imges img {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .hrv-thumb-imges img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .hrv-thumb-imges img {
    width: 100%;
  }
}
.hrv-thumb img {
  position: relative;
  z-index: 1;
}
@keyframes rounded {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hrv-shape-1 {
  position: absolute;
  right: 280px;
  top: 160px;
}

/* 5. Meanmenu */
/*----------------------------------------------
    # Meanmenu style here
----------------------------------------------*/

.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 li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.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(--title);
}

.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;
  font-size: 18px;
}

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

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* 6. Title */
/*----------------------------------------------
    # Title style here
----------------------------------------------*/
.section-top__title {
  color: var(--900, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 47.53px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .section-top__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .section-top__title {
    font-size: 35px;
  }
}
.section-top--wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 171px) {
  .section-top--wrp {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
.section-top--wrp .title-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-top--wrp .btn-wrp {
  display: flex;
  align-items: center;
}

/* 7. Service */

/* 10. Blog */
.blog1-card__title {
  color: var(--900, #111);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  padding-top: 12px;
}

.blog-details-qoute {
  border: 1px solid var(--theme);
  padding: 40px;
}
.blog-card {
  padding-bottom: 50px;
}
.blog-card__thumb {
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .blog-card__thumb img {
    width: 100%;
  }
}
.blog__heading {
  color: var(--900, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog__heading {
    font-size: 22px;
  }
}
.blog-search {
  border: 1px solid var(--border);
  padding: 40px 30px;
}
.blog-search__box {
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.blog-search__box input {
  border: none;
  outline: none;
}
.blog__menu {
  border: 1px solid var(--border);
  padding: 40px 30px;
}
.blog__menu ul li {
  background-color: #fff;
  margin-bottom: 15px;
}
.blog__menu ul li a {
  font-size: 18px;
  color: var(--title);
}
.blog__menu ul li a:hover {
  color: var(--black);
}
.blog__tags {
  border: 1px solid var(--border);
  padding: 40px;
}
@media (max-width: 991px) {
  .blog__tags {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .blog__tags {
    padding: 30px;
  }
}
.blog__tags__item span {
  margin-left: 15px;
  color: var(--title);
}
.blog-tag p {
  font-size: 18px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--title);
  padding: 5px 18px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-radius: 20px;
}
.blog-tag p:hover {
  background-color: var(--tp-primary-color);
  color: var(--tp-white);
}

/* 12. FAQ */
/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
.faq1__live-link {
  color: var(--Secondary, #E58E08);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
}

.faq-content {
  margin-top: 35px;
}
.faq-content .accordion-item {
  background-color: var(--white);
  border: none;
  border-top: 1px solid var(--black);
}
.faq-content .accordion-item:last-child {
  border-bottom: 1px solid var(--black);
}
.faq-content .accordion-item:not(:last-child) {
  border-bottom: none;
}
.faq-content .accordion-item .accordion-header .accordion-button {
  padding: 57px 0px 15px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  background: var(--white);
  color: var(--900, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}
.faq-content .accordion-item .accordion-header .accordion-button:after {
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  background-image: url(../../assets/images/icon/plus-icon.svg);
  color: var(--theme);
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  background-image: url(../../assets/images/icon/minus-icon.svg);
  font-weight: 600;
  color: var(--theme);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  padding: 29px 0px;
  color: var(--900, #000);
}
.faq-content .accordion-item .accordion-header .accordion-button--bg {
  font-size: 24px;
  background-color: var(--white);
}
.faq-content .accordion-item .accordion-collapse {
  border: none;
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 30px;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: var(--white);
  max-width: 1100px;
  color: var(--800, #7C7B7B);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
}
@media (max-width: 1399px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}
.faq-content .accordion-item .accordion-collapse .accordion-body--bg {
  background-color: var(--white);
}

/* 15. Footer */
/*----------------------------------------------
    # Footer style here
----------------------------------------------*/

.footer {
  position: relative;
}
.footer-wrp {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer-wrp-logoInfo__logo {
  padding-bottom: 35px;
}
.footer-wrp-logoInfo__desc {
  color: var(--White, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
  opacity: 0.8;
}

@media (min-width: 1200px) {
  .footer-wrp-service {
    padding-left: 44px;
  }
}
@media (min-width: 1400px) {
  .footer-wrp-service {
    padding-left: 100px;
  }
}
.footer-wrp-service__title {
  color: var(--White, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 35px;
}
.footer-wrp-service-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer-wrp-service-list__item a {
  color: var(--200, #CCC);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
}
.footer-wrp-service-list__item a:hover {
  color: var(--theme);
}
@media (min-width: 1400px) {
  .footer-wrp-contact {
    padding-left: 80px;
  }
}
.footer-wrp-contact__title {
  color: var(--White, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  padding-bottom: 35px;
}
.footer-wrp-contact-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer-wrp-contact-list__item a {
  color: var(--White, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
  opacity: 0.8;
}
.footer-wrp-contact-list__item a:hover {
  color: var(--theme);
}
.footer-wrp-contact-list__item a i {
  color: var(--Secondary, #E58E08);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  padding-right: 10px;
}
.footer-wrp-subscribe {
  border-radius: 10px;
  padding-top: 30px;
}
.footer-wrp-subscribe-form {
  position: relative;
}
.footer-wrp-subscribe-form__input {
  border-radius: 999px;
  background: rgb(25, 25, 25);
  width: 300px;
  height: 58px;
  padding: 15px 30px;
  border: none;
  outline: none;
  box-sizing: border-box;
  color: var(--White, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
}
@media (max-width: 1399px) {
  .footer-wrp-subscribe-form__input {
    width: 100%;
  }
}
.footer-wrp-subscribe-form__button {
  position: absolute;
  right: 115px;
  top: 2px;
}
@media (max-width: 1399px) {
  .footer-wrp-subscribe-form__button {
    right: 0;
  }
}
.footer-wrp-subscribe-form__button img {
  border-radius: 999px;
  background: var(--Secondary, #E58E08);
  padding: 22px;
}
.footer-wrp-subscribe-form__button :hover {
  background: var(--black);
  border: 1px solid var(--white);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(254, 254, 254, 0.3);
  padding-top: 21px;
}
@media (min-width: 992px) {
  .footer-bottom {
    flex-direction: row;
    gap: 10px;
  }
}
.footer-bottom p {
  color: var(--WHITE, #FBFBFB);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow);
}
.contact-info {
  padding: 30px;
  border: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .contact-info {
    padding: 20px;
  }
}
.contact-wrp {
  padding: 60px;
  border: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .contact-wrp {
    padding: 30px;
  }
}
.contact input,
.contact textarea {
  border: 1px solid var(--200);
  background-color: var(--theme2);
  width: 100%;
  padding: 20px 30px;
  font-size: 18px;
}
/*# sourceMappingURL=main.min.css.map */