@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: #1D951B;
  --theme2: #f5f5f5;
  --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);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-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);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

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

.spin {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-color-ani,
.color-animate {
  animation: bgColor 6s linear infinite;
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #1D951B;
  }
  100% {
    background-color: #F2BA4C;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

@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);
  }
}
.spin2 {
  animation: spin2 10s linear infinite;
}

@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;
  }
}
.img-shine {
  position: relative;
}
.img-shine::before {
  background-color: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 500ms linear;
  z-index: 22;
}
.img-shine:hover::before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 500ms linear;
}

.splt-txt .whitespace {
  width: 8px;
}
.splt-txt.animated .char {
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@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);
  }
}
.rotate360 {
  animation: rotate360 10s linear infinite;
  -webkit-animation: rotate360 10s linear infinite;
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}

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

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

.ralt {
  position: relative;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .fix-header {
    padding-top: 45px;
  }
}
.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;
  }
}

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

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

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

.pb-55 {
  padding-bottom: 55px;
}
@media (max-width: 767px) {
  .pb-55 {
    padding-bottom: 40px;
  }
}

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

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

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

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

.pt-128 {
  padding-top: 25px;
}
@media (min-width: 1400px) {
  .pt-128 {
    padding-top: 128px;
  }
}

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

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

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

.brBt-1 {
  border-bottom: 1px solid var(--border);
}

.brBt-2 {
  border-bottom: 1px solid var(--black);
}

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

.form__group span {
  color: var(--title);
  font-weight: 600;
  text-transform: capitalize;
}
.form__group input,
.form__group textarea {
  border: 1px solid rgba(38, 38, 38, 0.1);
  color: var(--title);
  background-color: transparent;
  padding: 15px 20px;
  border-radius: 6px;
  width: 100%;
  outline: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--title);
}
.form__group textarea {
  padding-top: 18px;
  height: 178px;
  border-radius: 5px;
}
.form__group--large textarea {
  height: 189px;
}

.form__group2 {
  width: 447px;
}
@media (max-width: 1399px) {
  .form__group2 {
    width: 100%;
  }
}
.form__group2 span {
  color: var(--title);
  font-weight: 600;
  text-transform: capitalize;
}
.form__group2 input,
.form__group2 textarea {
  border-radius: 10px;
  border: 1px solid var(--200, #CCC);
  color: var(--title);
  font-size: 18px;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
  background-color: transparent;
  padding: 17px 30px;
  outline: none;
}
@media (min-width: 1400px) {
  .form__group2 input,
  .form__group2 textarea {
    width: 100%;
  }
}
.form__group2 input::placeholder,
.form__group2 textarea::placeholder {
  color: var(--border);
}

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

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

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

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

.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 .loader-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader-2 .row {
  height: 100%;
}
.preloader .loader-2 .loader-section {
  padding: 0px;
}
.preloader .loader-2 .loader-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 .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-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;
  margin: auto;
  display: grid;
  place-items: center;
}

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

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

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

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

.counter__text {
  padding-bottom: 60px;
}
.counter__text p {
  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;
}
.counter-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 168px;
}
@media (max-width: 1399px) {
  .counter-item {
    gap: 117px;
  }
}
@media (max-width: 1199px) {
  .counter-item {
    gap: 58px;
  }
}
.counter-item-box {
  width: 190px;
}
@media (max-width: 499px) {
  .counter-item-box {
    width: 184px;
    margin: 0 auto;
  }
}
.counter-item-box__value {
  font-weight: 700;
  font-size: 60px;
  text-transform: uppercase;
}
.counter-item-box__value span {
  color: var(--900, #000);
  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: 767px) {
  .counter-item-box__value span {
    font-size: 54px;
  }
}
.counter-item-box__label p {
  color: var(--900, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
}

.slider-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-btn .style1 {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 42px;
  border: 1px solid rgba(38, 38, 38, 0.3);
}
.slider-btn .style1 img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  max-width: fit-content;
}
@media (max-width: 171px) {
  .slider-btn .style1 {
    width: 50px;
    height: 50px;
  }
}
.slider-btn :hover {
  background: var(--theme);
  border: 1px solid transparent;
}
.slider-btn :hover svg path {
  fill: var(--white);
}

.fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 449px) {
  .fancy-box--col {
    align-items: start;
    flex-direction: column;
  }
}
.fancy-box__profile img {
  border-radius: 100px;
}
.fancy-box__profile--img2 {
  margin-left: -42px;
}
.fancy-box-content__value h5 {
  color: var(--theme);
  padding-bottom: 8px;
}
.fancy-box-content__title {
  text-transform: uppercase;
  padding-bottom: 8px;
}
.fancy-box-content__desc {
  font-size: 16px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1200px) {
  .rating-box {
    justify-content: end;
  }
}
.rating__details {
  text-align: start;
}
@media (min-width: 1200px) {
  .rating__details {
    text-align: end;
  }
}

.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.searchClose {
  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.searchClose: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);
}

.page-nav-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-nav-wrap ul li .page-numbers {
  display: flex;
  width: 60px;
  height: 64px;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--title);
  border-radius: 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.page-nav-wrap ul li .page-numbers.current {
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  font-size: 14px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background: var(--theme);
  color: var(--white);
}

.breadcrumb {
  overflow: hidden;
  padding: 330px 0 211px 0;
  margin: 0 auto;
  position: relative;
  object-fit: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcrumb::before {
  content: "";
  background: linear-gradient(91deg, #000 37%, rgba(102, 102, 102, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 154px 0 140px 0;
  }
}
.breadcrumb-heading {
  position: relative;
  z-index: 6;
}
.breadcrumb-heading h1 {
  color: var(--white);
  text-align: start;
  font-family: "Rajdhani", sans-serif;
  font-size: 80px;
  font-style: normal;
  line-height: 86px;
  letter-spacing: -1.6px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .breadcrumb-heading h1 {
    font-size: 42px;
  }
}
.breadcrumb-heading__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 14px;
  justify-content: start;
  list-style-type: none;
  padding-left: 4px;
}
@media (max-width: 767px) {
  .breadcrumb-heading__items {
    margin-top: 0;
  }
}
.breadcrumb-heading__items li {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .breadcrumb-heading__items li {
    font-size: 20px;
  }
}
.breadcrumb-heading__items li:hover {
  color: var(--theme);
}
.breadcrumb-heading__items li a {
  color: var(--white);
  transition: all 0.3s;
}
.breadcrumb-heading__items li a:hover {
  color: var(--theme);
}
.breadcrumb-heading__items li i {
  color: var(--theme);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.br-20 {
  border-radius: 20px;
}

.body-color {
  color: #7C7B7B;
}

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

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

.tp_border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-wrapper {
  border: 1px solid var(--border);
  border-right: 0;
  border-left: 0;
}
@media (max-width: 991px) {
  .header-wrapper {
    border: none;
    padding: 0;
  }
}

.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:hover .menu-icon {
  color: #FFE815;
  display: block;
}
@media (max-width: 991px) {
  .header-area .main-menu ul li:hover .menu-icon {
    display: none;
  }
}
.header-area .main-menu ul li .menu-icon {
  color: aliceblue;
  font-size: 30px;
  position: absolute;
  top: -2px;
  right: -23px;
  display: none;
}
.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 .main-menu-home-2 .header-menu {
  background-color: transparent;
}
.header-area .main-menu-home-2 ul li a {
  color: var(--black);
}
.header-area .main-menu-home-2 ul li:hover a {
  color: var(--theme);
}
.header-area .main-menu-home-2 ul li:hover .tp-menu-icon {
  color: var(--theme);
}
.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;
  }
}
.header-area .header-icon {
  margin-right: 15px;
}
.header-area .header-home-2 .header-menu button {
  color: var(--black);
}
.header-area .header-home-2 .header-menu button:hover {
  color: var(--theme);
  transition: all 0.3s;
}

.hero {
  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-offcanvas {
    max-width: 100%;
  }
}
.mobile-offcanvas {
  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;
}
@media (max-width: 991px) {
  .mobile-offcanvas .menu-icon {
    display: none;
  }
}
.mobile-offcanvas .mobile-offcanvas-sm-title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 15px;
  color: var(--black);
}
.mobile-offcanvas-header {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: space-between;
}
.mobile-offcanvas-header button i {
  font-size: 30px;
  transition: all 0.3s;
}
.mobile-offcanvas-header button i:hover {
  transform: rotate(90deg);
}
.mobile-offcanvas-title {
  font-size: 35px;
  color: var(--black);
  text-transform: capitalize;
}
.mobile-offcanvas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.mobile-offcanvas-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-offcanvas-info span {
  display: inline-block;
}

.mobile-offcanvas-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-offcanvas-overlay-open {
  visibility: visible;
  opacity: 0.7;
}
.mobile-offcanvas-close i:hover {
  color: var(--theme);
}

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

.mobile-offcanvas-menu {
  margin-bottom: 50px;
}
.mobile-offcanvas-menu li {
  position: relative;
}
.mobile-offcanvas-menu li i {
  color: var(--tp-heading-color);
}
.mobile-offcanvas-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-offcanvas-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-offcanvas-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);
}

.hero {
  position: relative;
  padding: 100px 0 80px 0px;
}
@media (min-width: 768px) {
  .hero {
    padding: 160px 0 112px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 160px 0 112px;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 100px 0 80px 0px;
  }
}
.hero-background-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-background-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(272deg, rgba(38, 38, 38, 0) 2.59%, #262626 76.15%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content__title {
  padding-bottom: 20px;
}
.hero-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;
}
.hero-content__desc {
  padding-right: 0px;
}
@media (min-width: 1400px) {
  .hero-content__desc {
    padding-right: 80px;
  }
}
.hero-content__desc p {
  color: var(--border);
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}
.hero-content__subtitle {
  margin-bottom: 40px;
}
.hero-content__subtitle__item {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--White, #FFF);
  color: var(--White, #FFF);
  font-family: Rajdhani;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.hero-thumb {
  overflow: hidden;
}
@media (max-width: 1399px) {
  .hero-thumb {
    width: 96%;
  }
}
.hero-thumb-imges {
  margin-left: -80px;
}
@media (max-width: 1399px) {
  .hero-thumb-imges {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .hero-thumb-imges img {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .hero-thumb-imges img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .hero-thumb-imges img {
    width: 100%;
  }
}
.hero-thumb img {
  position: relative;
  z-index: 1;
}
.hero-thumb-shape__one {
  position: absolute;
  top: -100px;
  z-index: 0;
  right: 254px;
}
@media (max-width: 1399px) {
  .hero-thumb-shape__one {
    width: 55%;
    right: 141px;
  }
}
@media (max-width: 991px) {
  .hero-thumb-shape__one {
    display: none;
  }
}
.hero-client-review__item__1 {
  background-color: var(--white);
  position: absolute;
  top: 219px;
  right: -171px;
  padding: 12px 30px;
}
@media (max-width: 1399px) {
  .hero-client-review__item__1 {
    right: -152px;
  }
}
.hero-client-review__item__2 {
  background-color: #1D951B;
  position: absolute;
  top: 337px;
  right: -139px;
  padding: 12px 30px;
}
@media (max-width: 1399px) {
  .hero-client-review__item__2 {
    right: -121px;
  }
}
.hero-client-review__item__2 h2 {
  color: var(--white);
}
.hero-client-review__item__2 span {
  color: var(--white);
}
.hero-ellipse {
  animation: rounded 5s infinite linear;
  position: absolute;
  bottom: 120px;
  right: 275px;
  z-index: 3;
}
@media (max-width: 1399px) {
  .hero-ellipse {
    display: none;
  }
}
@keyframes rounded {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-ellipse text {
  fill: var(--white);
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-size: 60px;
  letter-spacing: 5px;
}
.hero-ellipse .circleText {
  width: 164px;
  height: 156px;
  padding: 0px;
  stroke-opacity: 0;
  stroke-opacity: 0;
}
.hero-shape-1 {
  position: absolute;
  right: 280px;
  top: 160px;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

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

.section-top__subtitle {
  color: var(--900, #000);
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-top__subtitle {
    margin-bottom: 10px;
  }
}
.section-top__subtitle2 {
  color: var(--White, #FFF);
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-top__subtitle2 {
    margin-bottom: 10px;
  }
}
.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__title2 {
  color: var(--White, #FFF);
  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__title2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .section-top__title2 {
    font-size: 35px;
  }
}
.section-top__desc {
  color: var(--title);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.section-top--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 171px) {
  .section-top--wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
.section-top--wrapper .title-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-top--wrapper .btn-wrapper {
  display: flex;
  align-items: center;
}

.service1-card {
  padding: 32px 30px;
  border: 1px solid var(--title);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .service1-card {
    padding: 30px;
  }
}
.service1-card__icon {
  padding-bottom: 55px;
}
.service1-card__title {
  color: var(--White, #FFF);
  font-family: Rajdhani;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  padding-bottom: 18px;
}
@media (max-width: 1399px) {
  .service1-card__title {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .service1-card__title {
    font-size: 28px;
  }
}
.service1-card__desc {
  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;
  padding-bottom: 57px;
}
.service1-card:hover {
  background: rgb(25, 25, 25);
  border: 1px solid transparent;
}
.service1-inner__pages {
  background-color: transparent;
}
.service1-inner__pages .service1-card__icon-white {
  opacity: 0;
  padding-bottom: 55px;
  visibility: hidden;
  display: none;
}
.service1-inner__pages .service1-card__title {
  color: #000;
}
.service1-inner__pages .service1-card__desc {
  color: var(--title);
}
.service1-inner__pages .service1-card__btn {
  background-color: transparent;
}
.service1-inner__pages .service1-card:hover {
  background: rgb(25, 25, 25);
  border: 1px solid transparent;
  transform: translate(0px, -20px);
}
.service1-inner__pages .service1-card:hover .service1-card__title {
  color: var(--white);
}
.service1-inner__pages .service1-card:hover .service1-card__title {
  color: var(--border);
}
.service1-inner__pages .service1-card:hover .service1-card__icon {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.service1-inner__pages .service1-card:hover .service1-card__icon-white {
  opacity: 1;
  visibility: visible;
  display: block;
}
.service1-inner__pages .service1-card:hover .theme-btn.style2 {
  color: var(--white) !important;
}

.service2 .title-area {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 0px;
}
.service2 .title-area .section-top__title2 {
  max-width: 530px;
}
.service2-card {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .service2-card {
    margin-bottom: 30px;
  }
}
.service2-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 1;
  pointer-events: none;
}
.service2-card__thumb {
  position: relative;
}
.service2-card__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.service2-card-content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1399px) {
  .service2-card-content {
    top: 52%;
  }
}
@media (max-width: 1199px) {
  .service2-card-content {
    top: 77%;
  }
}
@media (max-width: 991px) {
  .service2-card-content {
    top: 0%;
  }
}
@media (max-width: 449px) {
  .service2-card-content {
    top: 14%;
  }
}
@media (max-width: 374px) {
  .service2-card-content {
    top: 60%;
  }
}
.service2-card-content__icon {
  padding-bottom: 30px;
}
.service2-card-content__title {
  color: var(--White, #FFF);
  font-family: Rajdhani;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.service2-card-content__desc {
  color: var(--White, #FFF);
  font-family: Rajdhani;
  font-size: 18px;
  font-weight: 500;
  line-height: 26.1px;
  padding-bottom: 40px;
}
.service2-card-content-button {
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  transition: 0.3s ease;
}
.service2-card-content-button__link {
  border: 3px solid var(--white);
  padding: 27px;
  display: flex;
  width: 100px;
  height: 100px;
  background: var(--Secondary, #1D951B);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: -70px;
}
.service2-card:hover {
  overflow: visible;
  transform: translate(0px, -50px);
  transition: 0.7s ease;
  opacity: 1;
}
@media (max-width: 991px) {
  .service2-card:hover {
    transform: translate(0px, 0px);
    margin-bottom: 35px;
  }
}
.service2-card:hover:before {
  background: linear-gradient(180deg, rgba(193, 20, 37, 0) 0%, #1D951B 45.9%);
}
.service2-card:hover .service2-card:before {
  opacity: 1;
  visibility: visible;
}
.service2-card:hover .service2-card__thumb {
  position: relative;
}
.service2-card:hover .service2-card__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.service2-card:hover .service2-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service2-card:hover .service2-card-content__icon {
  padding-bottom: 30px;
}
@media (max-width: 1399px) {
  .service2-card:hover .service2-card-content__icon {
    padding-bottom: 20px;
  }
}
.service2-card:hover .service2-card-content__title {
  color: var(--White, #FFF);
  font-family: Rajdhani;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.service2-card:hover .service2-card-content__desc {
  color: var(--White, #FFF);
  font-family: Rajdhani;
  font-size: 18px;
  font-weight: 500;
  line-height: 26.1px;
  padding-bottom: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .service2-card:hover .service2-card-content__desc {
    padding-bottom: 18px;
  }
}
.service2-card:hover .service2-card-content-button {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199px) {
  .service2-card:hover .service2-card-content-button {
    margin-top: 20px;
  }
}

.service1-details__content__thumb-icon {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--theme);
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
}
.service1-details__name ul li {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--title);
  margin-bottom: 20px;
}
.service1-details__name ul li span {
  margin-right: 10px;
}
.service1-details__menu {
  background-color: #F5F5F5;
  padding: 40px;
  border-radius: 10px;
}
.service1-details__menu ul li {
  background-color: var(--white);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service1-details__menu ul li span {
  background-color: #1D951B;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--white);
  line-height: 30px;
  text-align: center;
}

.blog1-card__thumb {
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .blog1-card__thumb img {
    width: 100%;
  }
}
.blog1-card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--900, #111);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.blog1-card-meta i {
  padding-right: 10px;
}
.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-details-qoute__name::before {
  margin-bottom: 3px;
  content: "";
  width: 40px;
  background-color: var(--theme);
  display: inline-block;
  height: 2px;
  margin-right: 10px;
}
.blog-details-qoute__icon {
  color: var(--theme);
  font-size: 42px;
}
.blog-card {
  padding-bottom: 50px;
}
.blog-card__thumb {
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .blog-card__thumb img {
    width: 100%;
  }
}
.blog-card-meta {
  display: flex;
  column-gap: 20px;
  color: var(--title);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.blog-card-meta i {
  padding-right: 10px;
  color: var(--theme);
}
.blog-card__title {
  color: var(--900, #111);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Rajdhani;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}
.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-navigation__left, .blog-navigation__right {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.blog-navigation__left__icon a, .blog-navigation__right__icon a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--theme);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}
.blog-navigation__left__icon a:hover, .blog-navigation__right__icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.blog-navigation__right {
  justify-content: end;
}
.blog-comments__title {
  font-size: 30px;
  color: var(--black);
  font-weight: 700;
}
.blog-comments__text__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black);
}
.blog-comments__thumb img {
  max-width: none;
}
.blog-comments ul li {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  align-items: flex-start;
}
.blog-comments ul li a {
  color: var(--theme);
}
.blog-contact__wrapper {
  background-color: var(--theme2);
  padding: 40px;
}
@media (max-width: 991px) {
  .blog-contact__wrapper {
    padding: 20px;
  }
}
.blog-contact__wrapper label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-contact__wrapper input,
.blog-contact__wrapper textarea {
  width: 100%;
  padding: 20px 30px;
  font-size: 18px;
}
.blog-contact__wrapper input::placeholder,
.blog-contact__wrapper textarea::placeholder {
  color: var(--black);
  font-weight: 500;
}
.blog-contact__wrapper textarea {
  padding: 0;
}
.blog-contact__title {
  font-size: 30px;
  color: var(--black);
  font-weight: 700;
}
.blog-contact__btn {
  border-radius: 5px;
  padding: 20px 30px;
  width: 100%;
  height: 60px;
  background-color: var(--theme);
  text-align: center;
  margin-top: 30px;
  display: block;
  width: 100%;
}
.blog-contact__btn span {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.53;
  letter-spacing: 0.11em;
  text-transform: capitalize;
  text-align: center;
}
.blog-recent {
  border: 1px solid var(--border);
  padding: 40px 30px;
}
.blog-recent__item {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: center;
}
.blog-recent__item img {
  width: auto;
  max-width: none;
}
.blog-recent__text-title {
  letter-spacing: 1.4px;
}
.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);
}

.faq1__live-link {
  color: var(--Secondary, #1D951B);
  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);
}

.footer {
  position: relative;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer-wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-wrapper-content__text {
  padding-bottom: 14px;
}
.footer-wrapper-content__text h2 {
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .footer-wrapper-content__text h2 {
    font-size: 60px;
    line-height: 86px;
  }
}
@media (min-width: 1200px) {
  .footer-wrapper-content__text h2 {
    font-size: 80px;
    line-height: 86px;
  }
}
.footer-wrapper-content__text p {
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer-wrapper-content__cta {
  display: flex;
  justify-content: end;
  align-items: center;
}
.footer-wrapper-content__cta a {
  color: var(--white);
  background-color: #F3604C;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 180px;
  height: 180px;
}
.footer-wrapper-logoInfo__logo {
  padding-bottom: 35px;
}
.footer-wrapper-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-wrapper-service {
    padding-left: 44px;
  }
}
@media (min-width: 1400px) {
  .footer-wrapper-service {
    padding-left: 100px;
  }
}
.footer-wrapper-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-wrapper-service-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer-wrapper-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-wrapper-service-list__item a:hover {
  color: var(--theme);
}
@media (min-width: 1400px) {
  .footer-wrapper-link {
    padding-left: 38px;
  }
}
.footer-wrapper-link__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-wrapper-link-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer-wrapper-link-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-wrapper-link-list__item a:hover {
  color: var(--theme);
}
@media (min-width: 1400px) {
  .footer-wrapper-contact {
    padding-left: 80px;
  }
}
.footer-wrapper-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-wrapper-contact-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer-wrapper-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-wrapper-contact-list__item a:hover {
  color: var(--theme);
}
.footer-wrapper-contact-list__item a i {
  color: var(--Secondary, #1D951B);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  padding-right: 10px;
}
.footer-wrapper-subscribe {
  border-radius: 10px;
  padding-top: 30px;
}
.footer-wrapper-subscribe-form {
  position: relative;
}
.footer-wrapper-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-wrapper-subscribe-form__input {
    width: 100%;
  }
}
.footer-wrapper-subscribe-form__button {
  position: absolute;
  right: 115px;
  top: 2px;
}
@media (max-width: 1399px) {
  .footer-wrapper-subscribe-form__button {
    right: 0;
  }
}
.footer-wrapper-subscribe-form__button img {
  border-radius: 999px;
  background: var(--Secondary, #1D951B);
  padding: 22px;
}
.footer-wrapper-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;
}
.footer-bottom__links a {
  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;
}
.footer-bottom__links a:not(:last-child) {
  padding-right: 20px;
}
.footer-bottom__links a:hover {
  color: white;
}

.contact-subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow);
}
.contact-btn {
  padding: 20px 30px;
  width: 174px;
  border-radius: 5px;
  height: 63px;
  background-color: var(--yellow);
  display: inline-flex;
  align-items: center;
}
.contact-btn span {
  font-weight: 700;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.11em;
  text-transform: capitalize;
  color: var(--black);
  margin-right: 6px;
}
.contact-btn i {
  color: var(--black);
  line-height: 2;
}
.contact-info {
  padding: 30px;
  border: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .contact-info {
    padding: 20px;
  }
}
.contact-wrapper {
  padding: 60px;
  border: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .contact-wrapper {
    padding: 30px;
  }
}
.contact input,
.contact textarea {
  border: 1px solid var(--200);
  background-color: var(--theme2);
  width: 100%;
  padding: 20px 30px;
  font-size: 18px;
}
.contact-map {
  margin-bottom: -80px;
  width: 100%;
}
.contact-map iframe {
  width: 100%;
}