
@import url("../css2");
:root {
  --rr-ff-body: 'DM Sans', sans-serif;
  --rr-ff-heading: 'Lora', serif;
  --rr-ff-p: 'DM Sans', sans-serif;
  --rr-fw-normal: normal;
  --rr-fw-thin: 100;
  --rr-fw-elight: 200;
  --rr-fw-light: 300;
  --rr-fw-regular: 400;
  --rr-fw-medium: 500;
  --rr-fw-sbold: 600;
  --rr-fw-bold: 700;
  --rr-fw-ebold: 800;
  --rr-fw-black: 900;
  --rr-fs-body: 16px;
  --rr-fs-p: 16px;
  --rr-fs-h1: 100px;
  --rr-fs-h2: 55px;
  --rr-fs-h3: 24px;
  --rr-fs-h4: 18px;
  --rr-fs-h5: 16px;
  --rr-fs-h6: 14px;
  --rr-color-common-white: #ffffff;
  --rr-color-common-black: #000000;
  --rr-color-heading-primary: #1a1414;
  --rr-color-text-body: #8b827d;
  --rr-color-theme-primary: #9a8478;
  --rr-color-bg-1: #11151C;
  --rr-color-bg-2: #1e130c;
  --rr-color-grey-1: #F4F4F2;
  --rr-color-grey-2: #f6f2ef;
  --rr-color-border-1: #d6d4d3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  background-color: var(--rr-color-common-white);
  font-family: var(--rr-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--rr-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--rr-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--rr-fs-h1);
}

h2 {
  font-size: var(--rr-fs-h2);
}

h3 {
  font-size: var(--rr-fs-h3);
}

h4 {
  font-size: var(--rr-fs-h4);
}

h5 {
  font-size: var(--rr-fs-h5);
}

h6 {
  font-size: var(--rr-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--rr-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: var(--rr-color-text-body);
  margin-bottom: 15px;
  line-height: 30px;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--rr-color-theme-primary);
}

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-radius {
  border-radius: 6px;
}

.white-bg {
  background-color: var(--rr-color-common-white);
}

.bg-grey {
  background-color: var(--rr-color-grey-1);
}

.bg-dark-1 {
  background-color: var(--rr-color-heading-primary);
}

.container {
  max-width: 1340px;
}

.bd-bottom {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.overflow-h {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 50px;
  }
}
.section-heading .sub-heading {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-theme-primary);
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
  padding-right: 105px;
}
.section-heading .sub-heading:before {
  background-image: url(../img/shapes/sub-heading-shape.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  content: "";
  width: 88px;
  height: 11px;
  position: absolute;
  top: 65%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 992px) {
  .section-heading .sub-heading {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .sub-heading {
    font-size: 12px;
  }
}
.section-heading .section-title {
  background: rgb(154, 132, 120);
  background: radial-gradient(circle, rgb(154, 132, 120) 10%, rgb(30, 19, 12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 55px;
  line-height: 1.3;
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  text-transform: initial;
  position: relative;
}
@media (max-width: 1170px) {
  .section-heading .section-title {
    font-size: 40px;
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 24px;
  }
}
.section-heading.white-content p,
.section-heading.white-content .section-title {
  background: inherit;
  color: var(--rr-color-common-white);
  -webkit-text-fill-color: var(--rr-color-common-white);
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 40px;
  }
}

.t-up {
  text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
  color: var(--rr-color-common-white);
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 80%;
  height: 80%;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.img-reveal {
  position: relative;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}
.img-reveal .img-overlay {
  background-color: var(--rr-color-theme-primary);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.img-reveal img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.anim-text {
  overflow: hidden;
}

.running-text-wrap {
  padding-bottom: 51px;
}
@media (max-width: 1170px) {
  .running-text-wrap {
    padding-bottom: 0;
  }
}

.running-text {
  overflow: hidden;
}
.running-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 70px;
}
.running-text ul li {
  background: #9a8478;
  background: -webkit-radial-gradient(circle, #9a8478 0%, #1e130c 100%);
  background: radial-gradient(circle, #9a8478 0%, #1e130c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--rr-ff-heading);
  display: inline-block;
  white-space: nowrap;
  font-size: 120px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding-bottom: 20px;
}
.running-text ul li:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 50px;
  font-weight: 700;
  content: "\f078";
  color: var(--rr-color-heading-primary);
  position: absolute;
  top: 46%;
  right: -50px;
  transform: translateY(-50%);
}

/* Site Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #02050A;
  z-index: 999;
}

.loading {
  left: 50%;
  top: 50%;
  font-size: 100px;
  font-family: var(--rr-ff-heading);
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .loading {
    font-size: 50px;
  }
}
.loading:before {
  color: #333;
  content: attr(data-loading-text);
}
.loading:after {
  top: 0;
  left: 0;
  width: 0;
  opacity: 1;
  color: var(--rr-color-theme-primary);
  overflow: hidden;
  position: absolute;
  content: attr(data-loading-text);
  animation: loading 6s infinite;
}
@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mt-cursor:before {
    background: var(--rr-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }
  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }
  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}
.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 170px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 992px) {
  .md-mt-40 {
    margin-top: 40px;
  }
}

.pt-180 {
  padding-top: 180px;
}
@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-140 {
  padding-top: 140px;
}
@media only screen and (max-width: 992px) {
  .pt-140 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-140 {
    padding-top: 60px;
  }
}

.pt-130 {
  padding-top: 130px;
}
@media only screen and (max-width: 992px) {
  .pt-130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-130 {
    padding-top: 60px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 992px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 60px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 60px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 60px;
  }
}

.pb-140 {
  padding-bottom: 140px;
}
@media only screen and (max-width: 992px) {
  .pb-140 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-140 {
    padding-bottom: 60px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 992px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-130 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

.ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

#scroll-percentage {
  height: 60px;
  width: 60px;
  background-color: var(--rr-color-common-white);
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage {
    bottom: 20px;
    right: 20px;
  }
}

#scroll-percentage.active {
  bottom: 50px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage.active {
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage.active {
    bottom: 20px;
  }
}

#scroll-percentage-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

#scroll-percentage-value i {
  font-size: 20px;
}

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.light-img {
  display: none;
}

.switcher-button {
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 50;
  transform: translateY(-50%) rotate(90deg);
}

.switcher-button-inner-left:before,
.switcher-button-inner-left:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  outline: none;
}

.switcher-button .switcher-button-inner,
.switcher-button .switcher-button-inner-left {
  position: relative;
  cursor: pointer;
}

.switcher-button .switcher-button-inner-left:before {
  content: "\f186";
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  display: block;
  color: #fff;
  position: absolute;
  z-index: 1;
  margin: 0;
  right: 26px;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.switcher-button .switcher-button-inner-left:after {
  content: "";
  display: inline-block;
  color: #fff;
  background: var(--rr-color-bg-1);
  border: 1px solid rgba(235, 235, 235, 0.2);
  width: 3.5em;
  height: 1.8em;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  vertical-align: middle;
  -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
}

.switcher-button .switcher-button-inner-left {
  color: rgba(250, 250, 250, 0.51);
}

[data-theme=light] .switcher-button .switcher-button-inner-left:before {
  right: 10px;
  content: "\f185";
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  color: var(--rr-color-heading-primary);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
[data-theme=light] .switcher-button .switcher-button-inner-left:after {
  background: #fff;
  border: 1px solid rgba(235, 235, 235, 0.2);
}
[data-theme=light] .switcher-button .switcher-button-inner-left {
  color: rgba(149, 149, 149, 0.51);
}
[data-theme=light] .switcher-button .switcher-button-inner-left + .switcher-button-inner {
  color: rgba(250, 250, 250, 0.51);
}

/** Buttons CSS */
.rr-primary-btn {
  background-image: linear-gradient(to right, #1f140d, #3a2d26, #58473f, #77645a, #988276);
  font-family: var(--rr-ff-body);
  color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 20px 25px;
  border-radius: 100px;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}
.rr-primary-btn:before {
  background-image: linear-gradient(to right, #988276, #77645a, #58473f, #3a2d26, #1f140d);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.rr-primary-btn:hover {
  color: var(--rr-color-common-white);
}
.rr-primary-btn:hover:before {
  visibility: visible;
  opacity: 1;
}
.rr-primary-btn:focus {
  color: var(--rr-color-common-white);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .header {
    position: relative;
    top: 0;
    height: auto !important;
  }
}
.header .header-container {
  max-width: 1605px;
  width: 100%;
  margin: 0 auto;
}
.header .primary-header {
  background-color: var(--rr-color-common-white);
}
.header .top-bar {
  border-bottom: 1px solid rgba(30, 19, 12, 0.302);
}
@media only screen and (max-width: 767px) {
  .header .top-bar {
    display: none;
  }
}
.header .top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 15px 50px;
}
@media (max-width: 1399px) {
  .header .top-bar .top-bar-inner {
    column-gap: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .header .top-bar .top-bar-inner {
    justify-content: center;
  }
}
.header .top-bar .top-bar-inner .top-bar-left {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
@media only screen and (max-width: 992px) {
  .header .top-bar .top-bar-inner .top-bar-left {
    display: none;
  }
}
.header .top-bar .top-bar-inner .top-bar-left span {
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-theme-primary);
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li {
  display: inline-flex;
  position: relative;
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li:not(:last-of-type) {
  margin-right: 10px;
  padding-right: 15px;
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li:not(:last-of-type):before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  height: 4px;
  width: 4px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li a {
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 1399px) {
  .header .top-bar .top-bar-inner .top-mid-content {
    display: none;
  }
}
.header .top-bar .top-bar-inner .top-mid-content p {
  color: #827e7d;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.header .top-bar .top-bar-inner .top-mid-content p span {
  color: #1e130c;
  font-weight: 500;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list li {
  color: #827e7d;
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 16px;
  font-weight: 500;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list li span {
  color: #1e130c;
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 50px;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner {
    padding: 15px;
  }
}
.header .primary-header-inner .header-left {
  display: flex;
  align-items: center;
}
.header .primary-header-inner .header-left .header-logo {
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid rgba(30, 19, 12, 0.302);
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-left .header-logo {
    margin-right: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-left .header-logo {
    margin-right: 0px;
    padding-right: 0px;
    border: none;
  }
}
.header .primary-header-inner .header-left .header-logo img {
  max-width: 200px;
  height: 50px;
  object-fit: contain;
}
.header .primary-header-inner .header-left .header-logo .logo-light {
  display: none;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-left .header-logo img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-left .header-logo img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-left .header-logo img {
    max-width: 150px;
  }
}
.header .primary-header-inner .header-left .search-icon {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-left .search-icon {
    display: none;
  }
}
.header .primary-header-inner .header-left .search-icon i {
  font-size: 24px;
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-left .search-icon span {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 18px;
  font-weight: 500;
}
.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header .primary-header-inner .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap ul {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  margin: 0 27.5px;
}
@media (max-width: 1700px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 15px;
  }
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 10px;
  }
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 10px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li:first-child {
  margin-left: 0;
}
.header .primary-header-inner .header-menu-wrap ul li:last-child {
  margin-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul li a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  display: block;
  font-size: 18px;
  padding: 30.5px 0;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap ul li a {
    font-size: 14px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li a:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 30px;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li a:hover:before {
  width: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li ul {
  background-color: var(--rr-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}


.header .primary-header-inner .header-menu-wrap ul li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.header .primary-header-inner .header-menu-wrap ul li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul li li:not(:last-of-type) {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover {
  background-color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--rr-color-common-black);
}
.header .primary-header-inner .header-menu-wrap ul li li a {
  background-color: var(--rr-color-common-white);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--rr-color-heading-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 20px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap ul li li a {
    font-size: 13px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li li a:before {
  display: none;
}
.header .primary-header-inner .header-menu-wrap ul li li a:hover {
  color: var(--rr-color-heading-primary);
  letter-spacing: 0.4px;
}
.header .primary-header-inner .header-menu-wrap ul li li ul {
  top: 0;
  left: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li ul li a {
  color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
  color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
  color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-right-wrap {
  display: flex;
  align-items: center;
  column-gap: 120px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-right-wrap {
    column-gap: 50px;
  }
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-right-wrap {
    column-gap: 20px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right {
  display: flex;
  align-items: center;
}
.header .primary-header-inner .header-right-wrap .header-right .header-icon-item {
  display: flex;
  align-items: center;
  column-gap: 17px;
  margin-right: 30px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-icon-item {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .header-icon-item .icon-item a {
  color: var(--rr-color-theme-primary);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-right .header-icon-item .icon-item a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
    width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-btn {
    display: none;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon {
  border: 2px solid var(--rr-color-heading-primary);
  height: 58px;
  width: 58px;
  margin-left: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: left;
  height: 58px;
  max-width: 58px;
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span {
  background-color: var(--rr-color-heading-primary);
  display: block;
  width: 18px;
  height: 3px;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span:not(:last-of-type) {
  margin-bottom: 4px;
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger span:nth-child(2) {
  width: 10px;
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger:hover span:nth-child(2) {
  width: 15px;
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon .sidebar-trigger:hover span:nth-child(3) {
  width: 12px;
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item {
    line-height: 1;
    margin-left: 20px;
  }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--rr-color-heading-primary);
  font-size: 30px;
  opacity: 0.9;
}
@media (min-width: 993px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}
.header.fixed {
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header.fixed .primary-header {
  border-bottom: 1px solid rgba(30, 19, 12, 0.302);
}

.header-2 {
  top: 0;
}
.header-2:before {
  background-image: url(../img/shapes/header-shape-1.png);
  content: "";
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 84%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.header-2 .primary-header {
  background-color: transparent;
}
.header-2 .header-container {
  max-width: 1320px;
}
.header-2 .top-bar {
  background-color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 992px) {
  .header-2 .top-bar {
    display: none;
  }
}
.header-2 .top-bar .top-bar-inner {
  padding: 15px 0;
}
.header-2 .top-bar .top-bar-inner .top-mid-content p {
  color: var(--rr-color-common-white);
}
.header-2 .top-bar .top-bar-inner .top-mid-content p span {
  color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-left span {
  color: var(--rr-color-common-white);
}
.header-2 .top-bar .top-bar-inner .top-bar-left .top-social li:not(:last-of-type):before {
  background-color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-left .top-social li a {
  background-image: inherit;
  color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li {
  display: inline-flex;
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li:not(:last-of-type) {
  margin-right: 15px;
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li a {
  color: var(--rr-color-common-white);
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li a:hover {
  color: var(--rr-color-heading-primary);
}
.header-2 .header-mid-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 25px 0;
}
@media only screen and (max-width: 992px) {
  .header-2 .header-mid-inner {
    display: none;
  }
}
.header-2 .header-mid-inner .header-mid-contact {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
}
.header-2 .header-mid-inner .header-mid-contact .icon {
  background-color: var(--rr-color-common-white);
  height: 100%;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-2 .header-mid-inner .header-mid-contact .content span {
  color: var(--rr-color-theme-primary);
  display: block;
  font-weight: 500;
}
.header-2 .header-mid-inner .header-mid-contact .content a,
.header-2 .header-mid-inner .header-mid-contact .content p {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  font-size: 22px;
  font-weight: 500;
}
.header-2 .primary-header-inner {
  background-color: var(--rr-color-common-white);
  border: 1px solid #9e9c9b;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header-inner {
    border: none;
  }
}
.header-2 .primary-header-inner .header-menu-wrap {
  padding-left: 0;
  border-left: none;
}
.header-2.fixed {
  top: -180px;
  transition: all 0.3s ease-in-out;
}
.header-2.fixed:before {
  visibility: hidden;
  opacity: 0;
}
.header-2.fixed .primary-header {
  border: none;
}

.header-4 {
  top: 0;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--rr-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--rr-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--rr-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--rr-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--rr-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--rr-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--rr-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.primary-header {
  width: 100%;
}
.primary-header.fixed {
  background-color: var(--rr-color-bg-1);
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}
.primary-header.fixed .primary-header-inner {
  padding: 20px 60px;
}
@media (max-width: 1170px) {
  .primary-header.fixed .primary-header-inner {
    padding: 20px;
  }
}

@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--rr-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 400px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-head a img {
    max-width: 150px;
    height: 40px;
    object-fit: contain;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 48px;
    right: 40px;
    color: var(--rr-color-heading-primary);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-color-border-1);
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    color: var(--rr-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--rr-color-common-white);
    font-family: var(--rr-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    list-style: none;
  }
  .mobile-side-menu .side-menu-list li {
    font-family: var(--rr-ff-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--rr-color-heading-primary);
  }
  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--rr-color-heading-primary);
    margin-left: 10px;
    font-size: 16px;
  }
  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
  }
}
.mean-bar {
  background-color: transparent;
  min-height: auto;
  padding: 0;
}
.mean-bar .meanmenu-reveal {
  display: none !important;
}
.mean-bar .mean-nav {
  background-color: transparent;
  margin-top: 0;
  padding-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul {
  display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
  position: relative;
  float: none;
  display: block;
  width: auto;
}
.mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mean-bar .mean-nav.mean-nav > ul li a {
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border-top: none;
  padding: 0;
  float: none;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 14px;
  }
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  position: absolute;
  padding: 0;
  top: 3px;
  right: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
  font-size: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
  content: "+";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
  background-color: var(--rr-color-heading-primary);
  color: var(--rr-color-common-white);
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
  content: "\f068";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li ul {
  padding: 0 0 0 30px;
  margin-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li a {
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 13px;
  }
}

#popup-search-box {
  background-color: var(--rr-color-common-white);
  position: fixed;
  width: 100%;
  height: 20%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 20px 15px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid var(--rr-color-border-1);
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}
#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.png), auto;
}
#popup-search-box .box-inner-wrap .search-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--rr-color-heading-primary);
  border: 1px solid var(--rr-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #popup-search-box .box-inner-wrap .search-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
  }
}
#popup-search-box .box-inner-wrap .search-close:hover {
  background-color: var(--rr-color-theme-primary);
  border: 1px solid var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-section {
  position: relative;
  z-index: 1;
}
.blog-section .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.blog-left-content {
  position: relative;
  z-index: 5;
}
.blog-left-content p {
  max-width: 520px;
  width: 100%;
}

.blog-carousel-wrap {
  max-width: 655px;
  width: 100%;
  height: 540px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .blog-carousel-wrap {
    margin: 0 auto;
    margin-top: 50px;
  }
}
.blog-carousel-wrap .blog-carousel {
  height: 540px;
}
@media only screen and (max-width: 767px) {
  .blog-carousel-wrap .swiper-pagination {
    display: none;
  }
}
.blog-carousel-wrap .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 24px;
  width: 24px;
  border-radius: 0;
  border: 2px solid #ddd;
  opacity: 1;
  margin: 20px 0;
}
.blog-carousel-wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--rr-color-theme-primary);
}

.post-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 570px;
  width: 100%;
  height: 256px;
}
.post-card .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.post-card .post-thumb {
  height: 256px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .post-card .post-thumb {
    height: 300px;
  }
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  transform: scale(1);
}
.post-card .post-thumb .overlay {
  background-image: linear-gradient(363deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 0%, rgb(30, 19, 12) 0%, rgba(30, 19, 12, 0) 65%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.post-card .post-meta {
  background-color: var(--rr-color-common-white);
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 0;
}
.post-card .post-meta li {
  font-family: var(--rr-ff-p);
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 13px 20px;
  text-transform: capitalize;
}
.post-card .post-content {
  position: absolute;
  left: 90px;
  bottom: 20px;
  right: 40px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .post-card .post-content {
    left: 80px;
    right: 20px;
  }
}
.post-card .post-content .title {
  color: var(--rr-color-common-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media only screen and (max-width: 992px) {
  .post-card .post-content .title {
    font-size: 22px;
  }
  .post-card .post-content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .post-card .post-content .title {
    font-size: 18px;
  }
}
.post-card .post-content .title a {
  background: linear-gradient(var(--rr-color-common-white) 0%, var(--rr-color-common-white) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card .post-content .title a:hover {
  color: var(--rr-color-common-white);
  background-size: 100% 2px;
}
.post-card .post-content span {
  font-family: var(--rr-ff-p);
  color: var(--rr-color-common-white);
  font-weight: 500;
  display: inline-block;
  margin-left: 25px;
  padding-left: 45px;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.post-card .post-content span:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.post-card-2 {
  position: relative;
}
.post-card-2 .date {
  background-color: #f6f2ef;
  color: var(--rr-color-theme-primary);
  font-weight: 500;
  padding: 8px 25px;
  border-radius: 0 100px 100px 0;
  display: inline-block;
  width: 155px;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .post-card-2 .date {
    display: none;
  }
}
@media (max-width: 1399px) {
  .post-card-2 .post-thumb {
    height: 100%;
  }
  .post-card-2 .post-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
.post-card-2 .post-content {
  border: 1px solid #bbb8b6;
  padding: 35px 50px;
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-content {
    padding: 30px 20px;
  }
}
.post-card-2 .post-content .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.post-card-2 .post-content .title a {
  background: linear-gradient(var(--rr-color-theme-primary) 0%, var(--rr-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .title a:hover {
  color: var(--rr-color-theme-primary);
  background-size: 100% 2px;
}
.post-card-2 .post-content .category {
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-left: 40px;
}
.post-card-2 .post-content .category:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.post-card-2 .post-content p {
  margin-bottom: 30px;
}
.post-card-2 .post-content .post-icon {
  display: flex;
  align-items: center;
}
.post-card-2 .post-content .post-icon .line {
  background-color: var(--rr-color-heading-primary);
  width: 260px;
  height: 2px;
  margin-top: 10px;
}
.post-card-2.card-2 {
  margin-top: 24px;
}
.post-card-2.card-2 .date {
  border-radius: 100px 0 0 100px;
}
.post-card-2.card-2 .post-content {
  text-align: right;
}
.post-card-2.card-2 .post-content .post-icon {
  justify-content: end;
}
.post-card-2.card-2 .post-content .post-icon img {
  transform: rotate(360deg);
}

.post-meta {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 20px;
}
.post-meta li {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-meta li i {
  font-size: 14px;
}
.post-meta li:not(:last-of-type) {
  margin-right: 20px;
}
.post-meta li a:hover {
  color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-meta li {
    font-size: 12px;
  }
}

.pagination-wrap {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: 10px;
}
.pagination-wrap li a {
  background-color: transparent;
  color: var(--rr-color-heading-primary);
  font-weight: 700;
  height: 60px;
  width: 60px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid var(--rr-color-border-1);
  border-radius: 10px;
}
.pagination-wrap li a:hover {
  background-color: var(--rr-color-theme-primary);
}
.pagination-wrap li .active {
  background-color: var(--rr-color-theme-primary);
}

.blog-section-4 {
  padding-top: 220px;
}
@media (max-width: 1170px) {
  .blog-section-4 {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 992px) {
  .blog-section-4 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section-4 {
    padding-top: 50px;
  }
}

.post-thumb-carousel .swiper-arrow .swiper-nav {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 24px;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rr-color-heading-primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-thumb-carousel .swiper-arrow .swiper-nav:hover {
  background-color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-thumb-carousel .swiper-arrow .swiper-nav {
    left: 10px;
  }
}
.post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
  left: auto;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
    right: 10px;
  }
}

.post-card-3 {
  padding: 40px 0 0 30px;
  border: 1px solid #bbb8b6;
}
@media only screen and (max-width: 767px) {
  .post-card-3 .post-content {
    padding-right: 20px;
  }
}
.post-card-3 .post-content .post-date-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.post-card-3 .post-content .post-date-wrap .date {
  color: var(--rr-color-common-white);
  position: relative;
  z-index: 1;
  padding: 5px 20px;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
  margin-left: -30px;
}
@media only screen and (max-width: 767px) {
  .post-card-3 .post-content .post-date-wrap .date {
    font-size: 13px;
  }
}
.post-card-3 .post-content .post-date-wrap .date:before {
  background-image: linear-gradient(180deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.post-card-3 .post-content .post-date-wrap .category {
  margin-left: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  color: var(--rr-color-theme-primary);
  font-weight: 500;
}
.post-card-3 .post-content .post-date-wrap .category:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.post-card-3 .post-content .title {
  margin-bottom: 30px;
}
.post-card-3 .post-content .title a {
  background: linear-gradient(var(--rr-color-theme-primary) 0%, var(--rr-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card-3 .post-content .title a:hover {
  color: var(--rr-color-theme-primary);
  background-size: 100% 2px;
}
.post-card-3 .post-thumb {
  height: 400px;
  overflow: hidden;
}
.post-card-3 .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-3 .post-thumb .img-overlay {
  background-color: var(--rr-color-common-white);
}

.blog-inner-card:not(:last-of-type) {
  margin-bottom: 50px;
}

/* !END: Theme Blog CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.hero-section {
  position: relative;
}
.hero-section .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1600px) {
  .hero-section .shape {
    right: -10%;
  }
}
@media (max-width: 1399px) {
  .hero-section .shape {
    right: -20%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .shape {
    display: none;
  }
}
.hero-section .shape-2 {
  position: absolute;
  top: 0;
  right: -68px;
}
@media (max-width: 1170px) {
  .hero-section .shape-2 {
    display: none;
  }
}
.hero-section .hero-imgs .hero-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hero-section .hero-imgs .hero-img-1 img {
  height: 100%;
  object-fit: cover;
  object-position: center left;
}
.hero-section .hero-imgs .hero-img-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  height: 963px;
}
@media (max-width: 1600px) {
  .hero-section .hero-imgs .hero-img-2 {
    right: -10%;
  }
}
@media (max-width: 1399px) {
  .hero-section .hero-imgs .hero-img-2 {
    right: -20%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .hero-imgs .hero-img-2 {
    display: none;
  }
}
.hero-section .hero-imgs .hero-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  padding: 330px 0 294px 100px;
  position: relative;
  transform: translateY(-20px);
}
@media (max-width: 1170px) {
  .hero-content {
    padding-left: 70px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content {
    padding: 100px 0;
    padding-left: 70px;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .hero-content {
    padding-left: 40px;
  }
}
.hero-content .hero-text {
  color: #1e130c;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  writing-mode: vertical-lr;
  padding-left: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .hero-content .hero-text {
    font-size: 12px;
    left: -10px;
  }
}
.hero-content .hero-text:before {
  background-image: url(../img/shapes/hero-text-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
  width: 12px;
  height: 227px;
  position: absolute;
  bottom: 50%;
  left: 0;
  transform: translateY(50%) rotate(180deg);
}
.hero-content .hero-title {
  background: rgb(154, 132, 120);
  background: radial-gradient(circle, rgb(154, 132, 120) 10%, rgb(30, 19, 12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .hero-content .hero-title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .hero-title {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .hero-section-2 {
    padding-top: 0;
  }
}

.hero-img-wrap {
  margin-top: 107px;
  max-width: 1760px;
  width: 100%;
  height: 800px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap {
    height: 450px;
  }
}
.hero-img-wrap .hero-img {
  width: 100%;
  height: 100%;
}
.hero-img-wrap .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-wrap .hero-content-2 {
  background-image: -webkit-linear-gradient(180deg, rgb(30, 19, 12) 0%, rgb(154, 132, 120) 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 80px 150px 90px 300px;
  clip-path: polygon(37% 0, 90% 0, 100% 100%, 0% 100%);
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .hero-content-2 {
    padding: 50px 50px;
    padding-left: 100px;
  }
}
.hero-img-wrap .hero-content-2 .title {
  color: var(--rr-color-common-white);
  font-size: 100px;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}
@media only screen and (max-width: 992px) {
  .hero-img-wrap .hero-content-2 .title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .hero-content-2 .title {
    font-size: 40px;
  }
}
.hero-img-wrap .hero-content-2 .hero-btn {
  margin-top: 40px;
  text-align: right;
}
.hero-img-wrap .hero-content-2 .hero-text {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 240px;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 25px;
  left: 140px;
}
@media only screen and (max-width: 767px) {
  .hero-img-wrap .hero-content-2 .hero-text {
    display: none;
  }
}
.hero-img-wrap .hero-content-2 .hero-text h5 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
}
.hero-img-wrap .hero-content-2 .hero-text h5 span {
  color: var(--rr-color-theme-primary);
  font-size: 40px;
  font-weight: 500;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Therapy CSS
----------------------------------------*/
.therapy-section {
  position: relative;
  z-index: 5;
  overflow-x: clip;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.theory-wrap {
  position: relative;
  z-index: 1;
  padding: 40px;
  max-width: 1325px;
  width: 100%;
  margin: 0 auto;
  margin-top: -200px;
  padding-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .theory-wrap {
    margin-top: 0;
    padding: 40px 0;
    padding-bottom: 0;
  }
}
.theory-wrap:before {
  background-color: var(--rr-color-common-white);
  content: "";
  width: 3000px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.therapy-item {
  background-color: rgb(246, 242, 239);
  padding: 30px;
  position: relative;
  z-index: 1;
}
.therapy-item:before {
  background-image: linear-gradient(0deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 82%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.therapy-item .icon {
  background-color: var(--rr-color-common-white);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 140px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.therapy-item .icon:before {
  background-color: var(--rr-color-common-white);
  height: 30px;
  width: 30px;
  content: "";
  position: absolute;
  top: 25px;
  right: -10px;
  transform: rotate(-45deg);
  z-index: -1;
}
.therapy-item .therapy-content {
  padding-left: 100px;
}
.therapy-item .therapy-content .title {
  font-size: 24px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.therapy-item .therapy-content p {
  line-height: 1.5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.therapy-item .therapy-content .therapy-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.therapy-item .therapy-content .therapy-number a {
  color: #7b6f67;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d1ce;
  border-radius: 50%;
}
.therapy-item .therapy-content .therapy-number a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.therapy-item .therapy-content .therapy-number .number {
  font-family: var(--rr-ff-heading);
  color: #e3dfdc;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.therapy-item.active:before, .therapy-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.therapy-item.active .therapy-content .title, .therapy-item:hover .therapy-content .title {
  color: var(--rr-color-common-white);
}
.therapy-item.active .therapy-content p, .therapy-item:hover .therapy-content p {
  color: #bbadad;
}
.therapy-item.active .therapy-number a, .therapy-item:hover .therapy-number a {
  border: 1px solid rgba(213, 209, 206, 0.5);
  color: var(--rr-color-common-white);
}
.therapy-item.active .therapy-number .number, .therapy-item:hover .therapy-number .number {
  color: rgba(255, 255, 255, 0.12);
}

.therapy-bottom {
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #d7cec9;
  position: relative;
}
.therapy-bottom .map-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.therapy-bottom ul {
  display: flex;
  align-items: center;
}
.therapy-bottom ul li {
  margin-right: -30px;
}
.therapy-bottom ul li.plus {
  color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--rr-color-theme-primary);
  transform: rotate(-45deg);
}
.therapy-bottom ul li.plus i {
  transform: rotate(45deg);
}
.therapy-bottom p {
  margin-left: 50px;
  margin-bottom: 0;
  font-weight: 500;
}
.therapy-bottom p a {
  color: var(--rr-color-heading-primary);
  font-weight: 600;
  text-decoration: underline;
}

.therapy-container {
  max-width: 1325px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .therapy-container {
    padding: 0 15px;
  }
}

.therapy-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 80px 0;
}
.therapy-cta .title {
  color: var(--rr-color-common-white);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.therapy-2 {
  position: relative;
  z-index: 1;
}
.therapy-2:before {
  background-color: var(--rr-color-common-white);
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: -1;
}
.therapy-2 .theory-wrap {
  box-shadow: 0px 0px 70px 0px rgba(34, 34, 34, 0.07);
}

/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-header .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100px;
  left: 0;
}
.page-header .overlay {
  background-image: -webkit-linear-gradient(180deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 72%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-header .bg-color-wrap {
  mask-image: url(../img/page-header.png);
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-header-content {
  padding: 460px 0 90px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: start;
}
@media only screen and (max-width: 992px) {
  .page-header-content {
    padding: 300px 0 90px 0;
  }
}
@media only screen and (max-width: 992px) {
  .page-header-content {
    padding: 200px 0 100px 0;
  }
}
.page-header-content .title {
  color: var(--rr-color-common-white);
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 992px) {
  .page-header-content .title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 46px;
    margin-bottom: 10px;
  }
}
.page-header-content .sub-title {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .page-header-content .sub-title {
    font-size: 13px;
  }
}
.page-header-content .sub-title:before {
  background-image: url(../img/shapes/line.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.page-header-content .sub-title .home {
  color: var(--rr-color-common-white);
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
  font-style: italic;
}
.page-header-content .sub-title .home:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-weight: 700;
  content: "-";
  color: var(--rr-color-common-white);
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.page-header-content .sub-title a {
  color: var(--rr-color-common-white);
}
@media only screen and (max-width: 767px) {
  .page-header-content .sub-title a {
    line-height: 2;
  }
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-content {
  background-color: var(--rr-color-bg-1);
  padding: 40px 50px;
  border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .contact-content {
    padding: 30px 20px;
  }
}
.contact-content .section-heading {
  margin-bottom: 30px;
}
.contact-content .section-heading .section-title {
  font-size: 36px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .contact-content .section-heading .section-title {
    font-size: 32px;
  }
}
.contact-content .contact-list .list-item {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  grid-gap: 20px;
}
.contact-content .contact-list .list-item:not(:last-of-type) {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
  .contact-content .contact-list .list-item {
    grid-template-columns: 1fr;
  }
}
.contact-content .contact-list .list-item .icon {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-theme-primary);
  font-size: 30px;
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-content .contact-list .list-item .content .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.contact-content .contact-list .list-item .content p {
  margin-bottom: 0;
}
.contact-content .contact-list .list-item .content a {
  display: block;
}
.contact-content .contact-list .list-item .content span {
  display: block;
}
.contact-content .contact-list .list-item:hover .icon {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.contact-wrap {
  background-color: var(--rr-color-grey-1);
  padding: 60px;
  align-items: end;
}
@media only screen and (max-width: 767px) {
  .contact-wrap {
    padding: 40px 20px;
  }
}
.contact-wrap .section-heading .section-title {
  margin: 0;
}

.blog-contact-form.form-2 {
  border: 1px solid var(--rr-color-border-1);
}

.map-wrapper {
  margin-bottom: -10px;
}

.contact-section-2 {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}
@media only screen and (max-width: 992px) {
  .contact-section-2 {
    margin-top: 0px;
  }
}
.contact-section-2 .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45%;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .contact-section-2 .bg-img {
    display: none;
  }
}
.contact-section-2 .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.about-section {
  position: relative;
}
.about-section .shapes .shape.shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.about-section .shapes .shape.shape-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.about-container {
  max-width: 1570px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.about-img-wrap {
  max-width: 740px;
  width: 100%;
  height: 705px;
  position: relative;
}
.about-img-wrap .about-mask-1 {
  max-width: 450px;
  width: 100%;
  height: 740px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--rr-color-common-black);
  mask-image: url(../img/images/about-img-mask-1.png);
  mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -170px 0;
}
.about-img-wrap .about-mask-2 {
  max-width: 262px;
  width: 100%;
  height: 452px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--rr-color-common-black);
  mask-image: url(../img/images/about-img-mask-2.png);
  mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -240px 0;
}
.about-img-wrap .about-mask-3 {
  max-width: 262px;
  width: 100%;
  height: 440px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--rr-color-common-black);
  mask-image: url(../img/images/about-img-mask-3.png);
  mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -140px 0;
}
.about-img-wrap .about-text-box {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 296px;
  height: 144px;
  display: grid;
  align-items: center;
  grid-template-columns: 65px 1fr;
  grid-gap: 20px;
  position: absolute;
  left: 70%;
  bottom: 40px;
  transform: translateX(-50%);
  padding: 20px 30px;
}
.about-img-wrap .about-text-box .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap .about-text-box {
    left: 0;
    transform: translateX(0);
  }
}

.about-content {
  max-width: 590px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .about-content {
    margin-top: 40px;
  }
}
.about-content .bottom-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 40px;
}
.about-content .about-items {
  display: flex;
  align-items: center;
  column-gap: 25px;
  flex-wrap: wrap;
  row-gap: 15px;
  max-width: 527px;
  width: 100%;
}
.about-content .about-items .about-item {
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  grid-gap: 15px;
  padding: 15px 40px 15px 20px;
  border: 2px solid #e8e7e6;
  border-radius: 0 100px 100px 0;
  position: relative;
}
.about-content .about-items .about-item:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  height: 105%;
  width: 3px;
  position: absolute;
  top: -2px;
  left: -2px;
}
.about-content .about-items .about-item .icon {
  height: 50px;
}
.about-content .about-items .about-item .icon img {
  height: 100%;
}
.about-content .about-items .about-item .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}

.about-skills-items .skills-item {
  overflow: hidden;
  padding-top: 10px;
  max-width: 590px;
  width: 100%;
}
.about-skills-items .skills-item:not(:last-of-type) {
  margin-bottom: -15px;
  padding-bottom: 40px;
}
.about-skills-items .skills-item .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .about-skills-items .skills-item .title {
    font-size: 18px;
  }
}
.about-skills-items .skills-item .progress {
  height: 2px;
  overflow: visible;
  border-radius: 0;
}
.about-skills-items .skills-item .progress .progress-bar {
  position: relative;
  background-color: var(--rr-color-theme-primary);
  overflow: visible;
}
.about-skills-items .skills-item .progress .progress-bar span {
  font-family: var(--rr-ff-heading);
  background-color: var(--rr-color-heading-primary);
  color: var(--rr-color-common-white);
  display: block;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  background-repeat: no-repeat;
  padding: 10px 15px;
  position: absolute;
  top: -45px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .about-skills-items .skills-item .progress .progress-bar span {
    padding: 5px 15px;
    top: -40px;
  }
}

.about-content-2 .about-list {
  max-width: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-bottom: 40px;
}
.about-content-2 .about-list li {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 500;
}
.about-content-2 .about-list li .icon {
  background-color: rgb(246, 242, 239);
  color: var(--rr-color-theme-primary);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}
.about-content-2 .about-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 40px;
}
.about-content-2 .about-btn-wrap .about-author {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.about-img-wrap-2 {
  max-width: 670px;
  width: 100%;
  height: 655px;
  position: relative;
}
.about-img-wrap-2 .bg-color {
  background-color: #f6f2ef;
  position: absolute;
  top: 0;
  right: 0;
  height: 50%;
  width: 80%;
}
.about-img-wrap-2 .about-img-1 {
  position: absolute;
  top: -13px;
  left: -22px;
  z-index: 2;
}
.about-img-wrap-2 .about-img-2 {
  height: 352px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-img-wrap-2 .about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-2 .about-counter {
  position: absolute;
  top: 35px;
  right: 35px;
}
.about-img-wrap-2 .about-counter .play-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 30px;
}
.about-img-wrap-2 .about-counter .play-btn a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  font-size: 20px;
}
.about-img-wrap-2 .about-counter .play-btn a .ripple {
  height: 80px;
  width: 80px;
}
.about-img-wrap-2 .about-counter .play-btn a .ripple:before, .about-img-wrap-2 .about-counter .play-btn a .ripple:after {
  height: 80px;
  width: 80px;
}
.about-img-wrap-2 .about-counter .title {
  color: var(--rr-color-theme-primary);
  display: flex;
  align-items: center;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 1;
  margin-top: 30px;
}
.about-img-wrap-2 .about-counter .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.about-img-wrap-2 .about-counter p {
  font-family: var(--rr-ff-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
}

.about-section-4 {
  position: relative;
  z-index: 1;
}
.about-section-4 .about-bg-mask {
  max-width: 708px;
  width: 100%;
  height: 566px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--rr-color-common-black);
  mask-image: url(../img/images/about-img-mask-5.png);
  mask-repeat: no-repeat;
}
@media only screen and (max-width: 992px) {
  .about-section-4 .about-bg-mask {
    display: none;
  }
}
.about-section-4 .about-bg-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section-4 .about-bg-mask:before {
  background-color: rgba(255, 255, 255, 0.9);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-img-wrap-4 {
  height: 640px;
  max-width: 650px;
  width: 100%;
  position: relative;
}
@media (max-width: 1170px) {
  .about-img-wrap-4 {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .about-img-wrap-4 {
    display: none;
  }
}
.about-img-wrap-4 .about-img-mask {
  height: 482px;
  max-width: 620px;
  width: 100%;
}
.about-img-wrap-4 .about-img-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap-4 .about-shape {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about-img-wrap-4 .about-shape-2 {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.about-content-4 {
  position: relative;
  z-index: 5;
  margin-left: 40px;
}
@media only screen and (max-width: 992px) {
  .about-content-4 {
    margin-top: 40px;
    margin-left: 0px;
  }
}
@media (max-width: 1170px) {
  .about-content-4 p br {
    display: none;
  }
}
.about-content-4 .about-item-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.about-content-4 .about-item-wrap .about-item {
  background-color: var(--rr-color-grey-2);
  display: flex;
  align-items: center;
  column-gap: 20px;
  padding: 15px 30px;
}
.about-content-4 .about-item-wrap .about-item .icon i {
  font-size: 30px;
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.about-content-4 .about-item-wrap .about-item .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}
.about-content-4 .about-list {
  margin-top: 30px;
}
.about-content-4 .about-list li {
  display: flex;
  align-items: center;
  column-gap: 15px;
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.about-content-4 .about-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.about-content-4 .about-list li i {
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.about-content-4 .about-contact-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 40px;
}
.about-content-4 .about-contact-wrap .about-contact {
  display: grid;
  align-items: center;
  grid-gap: 10px;
  grid-template-columns: 35px 1fr;
}
.about-content-4 .about-contact-wrap .about-contact .icon {
  background-color: #1f140c;
  color: var(--rr-color-common-white);
  height: 35px;
  width: 35px;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-content-4 .about-contact-wrap .about-contact .content span {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.about-content-4 .about-contact-wrap .about-contact .content a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.service-section {
  background-color: #f6f2ef;
  position: relative;
  z-index: 1;
}
.service-section .bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.service-wrap > div {
  padding: 0;
}

.service-item {
  background-color: var(--rr-color-common-white);
  height: 435px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 35px 35px 0 35px;
}
.service-item:before {
  background-image: linear-gradient(-142deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 84%);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item.img-item {
  padding: 0;
  height: 435px;
}
.service-item.img-item .service-img {
  height: 100%;
}
.service-item.img-item .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item .service-thumb {
  height: 107px;
  margin-bottom: 30px;
}
.service-item .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item .service-content .title {
  font-weight: 500;
  margin-bottom: 20px;
  transition: inherit;
}
.service-item .service-content p {
  margin-bottom: 30px;
}
.service-item .service-content .service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-item .service-content .service-bottom .icon {
  background-color: #f6f2ef;
  padding: 20px 20px;
  border-radius: 100px 100px 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .service-content .service-bottom .icon img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .service-content .service-bottom .service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 1px solid #dddcdc;
}
.service-item .service-content .service-bottom .service-arrow:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.service-item.active:before, .service-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.service-item.active .service-content .title, .service-item:hover .service-content .title {
  color: var(--rr-color-common-white);
}
.service-item.active .service-content .service-bottom .icon, .service-item:hover .service-content .service-bottom .icon {
  background-color: var(--rr-color-theme-primary);
}
.service-item.active .service-content .service-bottom .icon img, .service-item:hover .service-content .service-bottom .icon img {
  filter: brightness(0) invert(1);
}
.service-item.active .service-content .service-bottom .service-arrow, .service-item:hover .service-content .service-bottom .service-arrow {
  border: 1px solid var(--rr-color-theme-primary);
  color: rgba(255, 255, 255, 0.7);
}
.service-item.active .service-content .service-bottom .service-arrow:hover, .service-item:hover .service-content .service-bottom .service-arrow:hover {
  color: var(--rr-color-common-white);
}

.service-section-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-section-2 .shape {
  position: absolute;
  top: 30%;
  left: -17%;
  z-index: -1;
}

.service-item-2 {
  background-color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 20px 45px;
  border: 1px solid #e8e7e6;
}
.service-item-2:not(:last-of-type) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .service-item-2 {
    padding: 20px;
  }
}
.service-item-2 .service-item-left {
  display: grid;
  align-items: center;
  grid-template-columns: 150px 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .service-item-2 .service-item-left {
    grid-template-columns: 1fr;
  }
}
.service-item-2 .service-item-left .icon-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 120px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item-2 .service-item-left .icon-wrap .icon {
  background-color: var(--rr-color-common-white);
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.service-item-2 .service-item-left .title {
  margin-bottom: 0;
}

.service-section-3 {
  background-color: #f6f2ef;
  position: relative;
  z-index: 1;
}
.service-section-3 .shape {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: -1;
  height: 100%;
}
.service-section-3 .shape img {
  width: 100%;
  height: 100%;
}

.service-top p {
  max-width: 500px;
  width: 100%;
  margin-bottom: 0;
}

.service-item-3 {
  background-color: var(--rr-color-common-white);
  padding: 35px 50px 0 50px;
  border: 1px solid #b5afaa;
}
@media only screen and (max-width: 767px) {
  .service-item-3 {
    padding: 30px 20px;
  }
}
.service-item-3 .service-thumb {
  height: 102px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.service-item-3 .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item-3 .service-content {
  margin-bottom: 30px;
}
.service-item-3 .service-content .title {
  margin-bottom: 20px;
}
.service-item-3 .service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.service-item-3 .icon {
  border: 1px solid #bbb8b6;
  padding: 20px 20px;
  border-radius: 100px 100px 0 0;
  border-bottom: none;
}
.service-item-3 .service-arrow {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbb8b6;
  border-radius: 50%;
}
.service-item-3 .service-arrow:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}

.service-details-content .service-details-img {
  margin-bottom: 40px;
  height: 440px;
  width: 100%;
}
.service-details-content .service-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-details-content .title {
  font-size: 24px;
  font-weight: 500;
}
.service-details-content .service-details-list {
  list-style: none;
}
.service-details-content .service-details-list li {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.service-details-content .service-details-list li:not(:last-of-type) {
  margin-bottom: 25px;
}
.service-details-content .service-details-list li i {
  color: var(--rr-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid #d6d4d3;
}
.service-details-content .service-details-list-2 {
  margin-left: 20px;
}
.service-details-content .service-details-list-2 li:not(:last-of-type) {
  margin-bottom: 10px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.download-wrap {
  border: 1px solid #e6e0dd;
  padding: 30px 90px 0 90px;
}
@media only screen and (max-width: 767px) {
  .download-wrap {
    padding: 30px 20px;
  }
}

.download-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-bottom: 30px;
}

.download-item {
  background-color: var(--rr-color-theme-primary);
  padding: 30px 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .download-item {
    padding: 30px 20px;
  }
}
.download-item .left-content span {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.download-item .left-content .title {
  color: var(--rr-color-common-white);
  font-weight: 500;
  margin-bottom: 0;
}
.download-item .download-btn {
  color: var(--rr-color-common-white);
  font-size: 25px;
}
.download-item:hover {
  background-color: #1e130c;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.project-wrap {
  position: relative;
  z-index: 1;
  height: 765px;
  max-width: 1320px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .project-wrap {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .project-wrap {
    grid-template-columns: 1fr;
  }
}

.project-item {
  overflow: hidden;
}
.project-item .project-thumb {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .project-item .project-thumb {
    height: 100%;
  }
}
.project-item .project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-item .project-thumb .project-content {
  background-color: var(--rr-color-common-white);
  width: 90%;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  padding: 10px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-item .project-thumb .project-content .line-border {
  background-color: var(--rr-color-theme-primary);
  width: 90%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.project-item .project-thumb .project-content .project-btn a {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.project-item .project-thumb .project-content .project-btn a:hover {
  background-color: var(--rr-color-heading-primary);
}
.project-item .project-thumb .project-content span {
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
}
.project-item .project-thumb .project-content .title {
  font-size: 22px;
}
.project-item.item-1 {
  max-width: 315px;
  width: 100%;
  height: 320px;
  position: absolute;
  top: 155px;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .project-item.item-1 {
    position: static;
    height: 350px;
    max-width: 100%;
  }
}
.project-item.item-2 {
  max-width: 315px;
  width: 100%;
  height: 660px;
  position: absolute;
  top: 100px;
  left: 340px;
}
@media only screen and (max-width: 992px) {
  .project-item.item-2 {
    position: static;
    height: 350px;
    max-width: 100%;
  }
}
.project-item.item-3 {
  max-width: 315px;
  width: 100%;
  height: 210px;
  position: absolute;
  top: 0px;
  right: 325px;
}
@media (max-width: 1399px) {
  .project-item.item-3 {
    right: 185px;
  }
}
@media (max-width: 1170px) {
  .project-item.item-3 {
    right: 0;
  }
}
@media only screen and (max-width: 992px) {
  .project-item.item-3 {
    position: static;
    height: 350px;
    max-width: 100%;
  }
}
.project-item.item-4 {
  max-width: 640px;
  width: 100%;
  height: 370px;
  position: absolute;
  top: 235px;
  right: 0px;
}
@media (max-width: 1399px) {
  .project-item.item-4 {
    max-width: 500px;
  }
}
@media (max-width: 1170px) {
  .project-item.item-4 {
    max-width: 315px;
  }
  .project-item.item-4 .project-thumb {
    height: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .project-item.item-4 {
    position: static;
    height: 350px;
    max-width: 100%;
  }
}
.project-item.view-gallary-btn {
  position: absolute;
  top: 0;
  right: 80px;
}
@media (max-width: 1399px) {
  .project-item.view-gallary-btn {
    display: none;
  }
}
.project-item.view-gallary-btn a {
  background-color: #f6f2ef;
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #b2a198;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--rr-color-heading-primary);
}
.project-item.view-gallary-btn a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.project-item:hover .project-thumb .project-content {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
@media only screen and (max-width: 992px) {
  .project-item {
    position: static;
  }
}

.project-section-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-section-3 .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1170px) {
  .project-section-3 .shape {
    right: -40%;
  }
}
@media only screen and (max-width: 992px) {
  .project-section-3 .shape {
    display: none;
  }
}

.project-carousel {
  height: 460px;
  overflow: visible;
}
.project-carousel .swiper-wrapper {
  height: 100%;
}
.project-carousel .swiper-slide {
  width: 316px !important;
  height: 460px;
}
@media only screen and (max-width: 767px) {
  .project-carousel .swiper-slide {
    width: 100% !important;
  }
}
.project-carousel .swiper-slide:nth-child(2n) {
  width: 535px !important;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .project-carousel .swiper-slide:nth-child(2n) {
    width: 100% !important;
  }
}
.project-carousel .swiper-slide .project-item {
  height: 460px;
}
.project-carousel .swiper-slide .project-item img {
  height: 460px;
}

.project-item-2 .project-content .project-btn a {
  background-image: -moz-linear-gradient(33deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  background-image: -webkit-linear-gradient(33deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  background-image: -ms-linear-gradient(33deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
}

@media only screen and (max-width: 992px) {
  .project-details-content {
    margin-bottom: 40px;
  }
}
.project-details-content .project-details-img {
  height: 445px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .project-details-content .project-details-img {
    height: 350px;
  }
}
.project-details-content .project-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-details-content .details-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.project-details-content .project-details-box .project-details-thumb {
  max-width: 300px;
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 1;
}
.project-details-content .project-details-box .project-details-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-details-content .project-details-box .project-details-thumb .overlay {
  background-color: rgba(31, 20, 12, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.project-details-content .project-details-box .project-details-thumb .play-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project-details-content .project-details-box .project-details-thumb .play-btn a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  height: 80px;
  width: 80px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.project-details-content .project-details-box .project-details-thumb .play-btn a .ripple {
  height: 80px;
  width: 80px;
}
.project-details-content .project-details-box .project-details-thumb .play-btn a .ripple:before, .project-details-content .project-details-box .project-details-thumb .play-btn a .ripple:after {
  height: 80px;
  width: 80px;
}
.project-details-content .project-details-box .project-box-content .project-box-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.project-details-content .project-details-box .project-box-content .project-box-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.project-details-content .project-details-box .project-box-content .project-box-list li .icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdddc;
  border-radius: 50%;
}

.project-details-content .project-customer-review .details-title {
  margin-bottom: 30px;
}
.project-details-content .project-customer-review .project-testi {
  text-align: center;
  border: 1px solid #dfdddc;
  padding: 20px 10px;
}
.project-details-content .project-customer-review .project-testi .testi-author {
  background-color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 7px 30px 7px 10px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #dfdddc;
}
.project-details-content .project-customer-review .project-testi .testi-author:before {
  background-image: linear-gradient(to right, #1f140d, #3a2d26, #58473f, #77645a, #988276);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-details-content .project-customer-review .project-testi .testi-author .title {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.project-details-content .project-customer-review .project-testi .testi-author .title span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  font-family: var(--rr-ff-body);
  color: var(--rr-color-theme-primary);
  display: block;
  margin-top: 5px;
}
.project-details-content .project-customer-review .project-testi p {
  padding: 0 10px;
  margin-bottom: 0;
}

.sidebar-widget .category-list.list-2 li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 500;
}
.sidebar-widget .team-item.project-details-card {
  background-color: #f6f2ef;
}
.sidebar-widget .team-item.project-details-card:before {
  visibility: hidden;
  opacity: 0;
}
.sidebar-widget .team-item.project-details-card .team-content .title {
  color: var(--rr-color-heading-primary);
}
.sidebar-widget .team-item.project-details-card .team-content .title a {
  color: var(--rr-color-heading-primary);
}
.sidebar-widget.team-card-widget {
  max-width: 420px;
  width: 100%;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.cta-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
}

.cta-video-btn {
  height: 344px;
  max-width: 333px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-video-btn .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta-video-btn .video-popup {
  background-color: var(--rr-color-common-white);
  height: 88px;
  width: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}
.cta-video-btn .video-popup .ripple {
  height: 88px;
  width: 88px;
}
.cta-video-btn .video-popup .ripple:before, .cta-video-btn .video-popup .ripple:after {
  height: 88px;
  width: 88px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.testi-wrap {
  background-color: #f6f2ef;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.testi-item .testi-content-wrap {
  height: 270px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
}
@media only screen and (max-width: 767px) {
  .testi-item .testi-content-wrap {
    padding: 0 10px;
  }
}
.testi-item .testi-content-wrap .testi-bg {
  background-image: url(../img/shapes/testi-item-shape.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .testi-item .testi-content-wrap .testi-bg {
    background-size: cover;
  }
}
.testi-item .testi-content-wrap .shapes .shape-1 {
  position: absolute;
  top: 30px;
  right: 45px;
  z-index: -1;
}
.testi-item .testi-content-wrap .shapes .shape-2 {
  position: absolute;
  bottom: 30px;
  left: 45px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .testi-item .testi-content-wrap .quotes {
    display: none;
  }
}
.testi-item .testi-content-wrap .quotes .quote-1 {
  position: absolute;
  top: 25px;
  left: 70px;
  z-index: -1;
}
.testi-item .testi-content-wrap .quotes .quote-2 {
  position: absolute;
  bottom: 35px;
  right: 70px;
  z-index: -1;
}
.testi-item .testi-content-wrap p {
  color: var(--rr-color-common-white);
  font-size: 18px;
  font-style: italic;
  text-align: center;
}
.testi-item .author-info {
  display: grid;
  grid-template-columns: 1fr 90px;
  align-items: center;
  grid-gap: 15px;
  text-align: right;
  margin-top: 20px;
  margin-right: 35px;
}
@media only screen and (max-width: 767px) {
  .testi-item .author-info {
    margin-right: 0;
  }
}
.testi-item .author-info .title {
  font-size: 24px;
  font-weight: 500;
  text-align: right;
  margin-bottom: 0;
}
.testi-item .author-info .title span {
  color: var(--rr-color-theme-primary);
  font-family: var(--rr-ff-body);
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}
.testi-item.item-1 .testi-content-wrap .quotes .quote-2 img,
.testi-item.item-1 .testi-content-wrap .quotes .quote-1 img {
  filter: brightness(0) invert(1);
}
.testi-item.item-2 .testi-content-wrap .testi-bg {
  background-image: url(../img/shapes/testi-item-shape-2.png);
}
.testi-item.item-2 .testi-content-wrap p {
  color: var(--rr-color-theme-primary);
}

.testi-wrap-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 1600px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 80px 20px;
}
@media only screen and (max-width: 767px) {
  .testi-wrap-2 {
    padding-left: 0;
    padding-right: 0;
  }
}

.testi-item-2 {
  text-align: center;
}
.testi-item-2 .testi-content-wrap {
  position: relative;
  height: 410px;
  max-width: 426px;
  width: 100%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .testi-item-2 .testi-content-wrap {
    margin-bottom: 20px;
  }
}
.testi-item-2 .testi-content-wrap:before {
  background-image: url(../img/shapes/testi-item-bg-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .testi-item-2 .testi-content-wrap:before {
    display: none;
  }
}
.testi-item-2 .testi-content-wrap:after {
  background-image: url(../img/shapes/testi-item-bg-2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .testi-item-2 .testi-content-wrap:after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .testi-item-2 .testi-content-wrap .quotes {
    display: none;
  }
}
.testi-item-2 .testi-content-wrap .quotes .quote-1 {
  position: absolute;
  top: 80px;
  left: 80px;
  z-index: 2;
}
.testi-item-2 .testi-content-wrap .quotes .quote-2 {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 2;
}
.testi-item-2 .testi-content-wrap .testi-content {
  text-align: center;
  background-color: var(--rr-color-common-white);
  border-radius: 72% 28% 53% 47%/66% 51% 49% 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #b7b1ac;
  height: 360px;
  max-width: 380px;
  width: 100%;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testi-item-2 .testi-content-wrap .testi-content .testi-review-wrap {
  margin-left: 50px;
  margin-bottom: 20px;
}
.testi-item-2 .testi-content-wrap .testi-content .testi-review-wrap ul li {
  color: var(--rr-color-theme-primary);
  display: inline-flex;
}
.testi-item-2 .testi-content-wrap .testi-content .testi-review-wrap ul li:not(:last-of-type) {
  margin-right: 3px;
}
.testi-item-2 .testi-content-wrap .testi-content .testi-review-wrap span {
  font-weight: 500;
  color: var(--rr-color-heading-primary);
}
.testi-item-2 .testi-content-wrap .testi-content p {
  font-style: italic;
  font-size: 18px;
  color: var(--rr-color-theme-primary);
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .testi-item-2 .testi-content-wrap .testi-content p {
    padding: 0 20px;
  }
}
.testi-item-2 .testi-author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--rr-color-common-white);
  padding: 7px 10px 7px 30px;
  border-radius: 100px;
  border: 1px solid #b5afaa;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testi-item-2 .testi-author:before {
  background-image: linear-gradient(to right, #1f140d, #3a2d26, #58473f, #77645a, #988276);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testi-item-2 .testi-author .title {
  text-align: right;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .testi-item-2 .testi-author .title {
    font-size: 18px;
  }
}
.testi-item-2 .testi-author .title span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  font-family: var(--rr-ff-body);
  color: var(--rr-color-theme-primary);
  display: block;
  margin-top: 5px;
}
.testi-item-2:hover .testi-content-wrap:before {
  visibility: hidden;
  opacity: 0;
}
.testi-item-2:hover .testi-content-wrap:after {
  visibility: visible;
  opacity: 1;
}
.testi-item-2:hover .testi-author:before {
  visibility: visible;
  opacity: 1;
}
.testi-item-2:hover .testi-author .title {
  color: var(--rr-color-common-white);
}

.testi-item-3 {
  background-color: var(--rr-color-grey-2);
  padding: 40px 30px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .testi-item-3 {
    padding: 40px 20px;
  }
}
.testi-item-3:before {
  background-image: url(../img/shapes/testi-shape-5.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testi-item-3:after {
  background-image: url(../img/shapes/testi-shape-6.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.testi-item-3 .testi-author {
  background-color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 7px 30px 7px 10px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
}
.testi-item-3 .testi-author:before {
  background-image: linear-gradient(to right, #1f140d, #3a2d26, #58473f, #77645a, #988276);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testi-item-3 .testi-author .title {
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .testi-item-3 .testi-author .title {
    font-size: 18px;
  }
}
.testi-item-3 .testi-author .title span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  font-family: var(--rr-ff-body);
  color: var(--rr-color-theme-primary);
  display: block;
  margin-top: 5px;
}
.testi-item-3:hover:before {
  visibility: hidden;
  opacity: 0;
}
.testi-item-3:hover:after {
  visibility: visible;
  opacity: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.counter-wrap > div {
  padding: 0;
}

.counter-item {
  border-left: 2px solid var(--rr-color-theme-primary);
  border-right: 2px solid var(--rr-color-theme-primary);
}
.counter-item .icon {
  background-color: var(--rr-color-common-white);
  height: 85px;
  width: 85px;
  border: 1px solid var(--rr-color-theme-primary);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.counter-item .icon:after {
  background-image: linear-gradient(-90deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.counter-item .icon img {
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.counter-item .icon:before {
  background-color: var(--rr-color-common-white);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.counter-item .icon .shape {
  background-color: var(--rr-color-theme-primary);
  content: "";
  height: 60px;
  width: 60px;
  position: absolute;
  bottom: -4px;
  left: 31%;
  transform: translateX(-50%);
  border-radius: 5px;
  z-index: -1;
}
.counter-item .title {
  font-family: var(--rr-ff-heading);
  font-size: 50px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.counter-item .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.counter-item .title .odometer-inside {
  margin-bottom: -4px;
}
.counter-item .title .plus {
  font-size: 25px;
  margin-top: -20px;
}
.counter-item p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.counter-item:hover .icon:after {
  visibility: visible;
  opacity: 1;
}
.counter-item:hover .icon:before {
  visibility: hidden;
  opacity: 0;
}
.counter-item:hover .icon img {
  filter: brightness(0) invert(1);
}
.counter-item.item-2 {
  border-left: none;
  border-right: none;
}
.counter-item.item-3 {
  border-right: none;
}
@media only screen and (max-width: 992px) {
  .counter-item {
    border: none;
  }
}

.counter-section-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.counter-section-2 .overlay {
  background-color: #2c211a;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.9;
}
.counter-section-2 .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.counter-item-2 .title {
  color: var(--rr-color-common-white);
}
.counter-item-2 p {
  color: #bbadad;
}

.counter-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.counter-section .overlay {
  background-color: rgb(30, 19, 12);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.85;
}

.counter-item-3 {
  max-width: 315px;
  width: 100%;
  height: 150px;
  position: relative;
}
.counter-item-3 .counter-content {
  background-color: var(--rr-color-common-white);
  height: 100%;
  max-width: 250px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 30px;
}
.counter-item-3 .counter-content .title {
  font-family: var(--rr-ff-heading);
  font-size: 50px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.counter-item-3 .counter-content .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.counter-item-3 .counter-content .title .odometer-inside {
  margin-bottom: -4px;
}
.counter-item-3 .counter-content .title .plus {
  font-size: 25px;
  margin-top: -20px;
}
.counter-item-3 .counter-content p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.counter-item-3 .counter-icon {
  background-color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 85px;
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #ddcfc8;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.counter-item-3 .counter-icon:before {
  background-color: var(--rr-color-common-white);
  content: "";
  height: 30px;
  width: 62px;
  position: absolute;
  bottom: -31px;
  right: -2px;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  opacity: 0.7;
}
.counter-item-3 .counter-icon:after {
  background-image: linear-gradient(126deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.counter-item-3:hover .counter-icon {
  border: 1px solid var(--rr-color-theme-primary);
}
.counter-item-3:hover .counter-icon img {
  filter: saturate(0) invert(1);
}
.counter-item-3:hover .counter-icon:after {
  visibility: visible;
  opacity: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.team-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.team-section .overlay {
  background-color: rgb(30, 19, 12);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.95;
}

.team-item {
  background-color: var(--rr-color-common-white);
  padding: 25px;
  position: relative;
  z-index: 1;
}
.team-item:before {
  background-image: linear-gradient(90deg, rgb(30, 19, 12) 0%, rgb(154, 132, 120) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-thumb {
  background-color: var(--rr-color-common-black);
  mask-image: url(../img/team/team-mask-img.png);
  mask-repeat: no-repeat;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}
.team-item .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-item .team-thumb .gradient-shape {
  background: #1e130c;
  background: -webkit-linear-gradient(360deg, #1e130c 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(360deg, #1e130c 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content {
  margin-top: 20px;
  margin-left: 25px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .team-item .team-content {
    margin-left: 0;
  }
}
.team-item .team-content .team-social {
  position: relative;
}
.team-item .team-content .team-social .expand {
  background-image: linear-gradient(143deg, rgb(154, 132, 120) 20%, rgb(30, 19, 12) 100%);
  color: var(--rr-color-common-white);
  font-size: 15px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.team-item .team-content .team-social .social-list {
  background: var(--rr-color-common-white);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
  list-style: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  width: 45px;
  position: absolute;
  bottom: 155%;
  left: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
}
.team-item .team-content .team-social .social-list:after {
  background-color: var(--rr-color-common-white);
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.team-item .team-content .team-social .social-list li {
  transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item .team-content .team-social .social-list li a {
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 600;
}
.team-item .team-content .team-social .social-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.team-item .team-content .team-social .social-list li:not(:last-of-type) {
  margin-bottom: 6px;
}
.team-item .team-content .team-social:hover .social-list {
  visibility: visible;
  opacity: 1;
}
.team-item .team-content .author-name .title {
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 992px) {
  .team-item .team-content .author-name .title {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .team-item .team-content .author-name .title {
    font-size: 20px;
    margin-top: 20px;
  }
}
.team-item .team-content .author-name span {
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-theme-primary);
}
.team-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.team-item:hover .team-thumb .gradient-shape {
  visibility: hidden;
  opacity: 0;
}
.team-item:hover .team-content .author-name .title {
  color: var(--rr-color-common-white);
  transition: inherit;
}

.team-top .swiper-arrow {
  border: 1px solid #bbb8b6;
  padding: 8px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.team-wrap {
  background-color: var(--rr-color-bg-2);
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 15px;
}

.team-item-2 .team-thumb-wrap {
  background: #9a8478;
  background: -webkit-linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  background: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  position: relative;
  height: 360px;
  width: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 15px solid var(--rr-color-bg-2);
  margin-bottom: -180px;
  margin-left: -14px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .team-item-2 .team-thumb-wrap {
    width: 290px;
    height: 290px;
  }
}
.team-item-2 .team-thumb-wrap:after {
  background: #9a8478;
  background: -webkit-linear-gradient(0deg, #9a8478 0%, #f6f2ef 100%);
  background: linear-gradient(0deg, #9a8478 0%, #f6f2ef 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item-2 .team-thumb-wrap .team-thumb {
  position: absolute;
  bottom: 0;
  left: 64%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
}
.team-item-2 .team-content {
  background-color: var(--rr-color-common-white);
  padding: 200px 80px 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  position: relative;
  z-index: 1;
  border-radius: 0 400px 400px 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .team-item-2 .team-content {
    padding-left: 20px;
  }
}
.team-item-2 .team-content:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  height: 180px;
  width: 180px;
  position: absolute;
  top: -5%;
  right: -5%;
  z-index: -1;
  border-radius: 50%;
}
.team-item-2 .team-content:after {
  background-image: linear-gradient(180deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 90%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item-2 .team-content .title {
  font-size: 24px;
  font-weight: 500;
}
.team-item-2 .team-content .title span {
  font-family: var(--rr-ff-body);
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-theme-primary);
  margin-top: 5px;
}
.team-item-2 .team-social {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .team-item-2 .team-social {
    right: 40px;
  }
}
.team-item-2 .team-social .expand {
  background-image: linear-gradient(143deg, rgb(154, 132, 120) 20%, rgb(30, 19, 12) 100%);
  color: var(--rr-color-common-white);
  font-size: 15px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.team-item-2 .team-social .social-list {
  background: var(--rr-color-common-white);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
  list-style: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  width: 45px;
  position: absolute;
  bottom: 155%;
  left: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
}
.team-item-2 .team-social .social-list:after {
  background-color: var(--rr-color-common-white);
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.team-item-2 .team-social .social-list li {
  transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item-2 .team-social .social-list li a {
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 600;
}
.team-item-2 .team-social .social-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.team-item-2 .team-social .social-list li:not(:last-of-type) {
  margin-bottom: 6px;
}
.team-item-2 .team-social:hover .social-list {
  visibility: visible;
  opacity: 1;
}
.team-item-2:hover .team-thumb-wrap:after {
  visibility: visible;
  opacity: 1;
}
.team-item-2:hover .team-content:after {
  visibility: visible;
  opacity: 1;
}
.team-item-2:hover .team-content .title {
  color: var(--rr-color-common-white);
  transition: inherit;
}

.inner-team {
  background-image: linear-gradient(0deg, rgb(246, 242, 239) 0%, rgb(255, 255, 255) 100%);
}

.team-details-left {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
  row-gap: 30px;
}
.team-details-left .team-social {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.team-details-left .team-social span {
  font-size: 20px;
  font-weight: 500;
  writing-mode: vertical-rl;
}
.team-details-left .team-social .social-list {
  margin-top: 30px;
  list-style: none;
}
.team-details-left .team-social .social-list li {
  background-color: #f6f2ef;
}
.team-details-left .team-social .social-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.team-details-left .team-social .social-list li a {
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-details-card {
  max-width: 420px;
  width: 100%;
}
.team-details-card:before {
  visibility: visible;
  opacity: 1;
}
.team-details-card .team-content {
  text-align: center;
  justify-content: center;
}
.team-details-card .team-content .title {
  color: var(--rr-color-common-white);
}

@media only screen and (max-width: 992px) {
  .team-details-content {
    margin-top: 50px;
  }
}
.team-details-content .title {
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .team-details-content .title {
    font-size: 36px;
  }
}
.team-details-content .team-details-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 40px;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 40px;
}
.team-details-content .team-details-list-wrap ul {
  list-style: none;
}
.team-details-content .team-details-list-wrap ul li {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 500;
}
.team-details-content .team-details-list-wrap ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.team-details-content .team-details-list-wrap ul li span {
  color: var(--rr-color-heading-primary);
  font-family: var(--rr-ff-heading);
  font-size: 20px;
  font-weight: 500;
  margin-right: 15px;
}
.team-details-content .team-details-box {
  background-color: #f6f2ef;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  align-items: start;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .team-details-content .team-details-box {
    padding: 30px 20px;
  }
}
.team-details-content .team-details-box .box-title {
  font-size: 24px;
  font-weight: 500;
}
.team-details-content .team-details-box .right-content .right-content-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.team-details-content .team-details-box .right-content .right-content-item .content-title {
  font-size: 18px;
  color: var(--rr-color-heading-primary);
  margin-bottom: 15px;
}
.team-details-content .team-details-box.box-2 {
  background-color: var(--rr-color-common-white);
  border: 1px solid #cccccc;
}
.team-details-content .team-details-box.box-2 .right-content ul {
  list-style: none;
}
.team-details-content .team-details-box.box-2 .right-content ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.team-details-content .team-details-box.box-2 .right-content ul li:not(:last-of-type) {
  margin-bottom: 20px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.faq-section {
  position: relative;
  z-index: 1;
}
.faq-section .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .faq-section .shape {
    display: none;
  }
}
.faq-section .faq-img {
  position: absolute;
  bottom: 0;
  right: 80px;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .faq-section .faq-img {
    display: none;
  }
}
.faq-section .shapes .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.faq-section .shapes .shape-2 {
  position: absolute;
  bottom: 100px;
  left: 65%;
  z-index: -1;
}

.faq-content .faq-accordion .accordion-item {
  border: none;
}
.faq-content .faq-accordion .accordion-item:not(:last-of-type) {
  margin-bottom: 25px;
}
.faq-content .faq-accordion .accordion-item .accordion-button {
  padding: 0;
  padding-right: 20px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  font-size: 24px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
  border-bottom: 1px solid #dddcdb;
}
.faq-content .faq-accordion .accordion-item .accordion-button .number {
  background-color: #f6f2ef;
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.faq-content .faq-accordion .accordion-item .accordion-button .number:before {
  background-image: linear-gradient(126deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--rr-color-common-white);
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) .number {
  color: var(--rr-color-common-white);
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) .number:before {
  visibility: visible;
  opacity: 1;
}
.faq-content .faq-accordion .accordion-item .accordion-body {
  padding-left: 0;
  margin-left: 90px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.contact-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.contact-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .contact-section .shape {
    display: none;
  }
}
.contact-section .shape img {
  height: 100%;
}
.contact-section .map-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  z-index: -2;
}
@media only screen and (max-width: 992px) {
  .contact-section .map-shape {
    display: none;
  }
}
.contact-section .map-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-section .contact-men {
  position: absolute;
  bottom: 0;
  left: 45%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .contact-section .contact-men {
    display: none;
  }
}

.contact-box-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
@media only screen and (max-width: 992px) {
  .contact-box-wrap {
    display: none;
  }
}
.contact-box-wrap .contact-box {
  background-color: var(--rr-color-common-white);
  padding: 20px 25px;
  width: 290px;
}
.contact-box-wrap .contact-box span {
  color: var(--rr-color-theme-primary);
  font-family: var(--rr-ff-body);
  font-size: 16px;
  font-weight: 500;
  display: block;
}
.contact-box-wrap .contact-box .title,
.contact-box-wrap .contact-box a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.contact-box-wrap .contact-box .title {
  margin-top: 10px;
}
.contact-box-wrap .contact-box a:hover {
  color: var(--rr-color-theme-primary);
}

.contact-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  padding-bottom: 190px;
}
@media only screen and (max-width: 992px) {
  .contact-container {
    padding-bottom: 90px;
  }
}

.contact-loaction {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.request-form .form-item {
  position: relative;
}
.request-form .form-item .form-control {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  padding: 15.5px 30px;
  border-radius: 0;
  margin-bottom: 25px;
  width: 100%;
  border: 1px solid #d6d0cd;
  border-radius: 100px;
}
.request-form .form-item .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.request-form .form-item .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.request-form .form-item .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.request-form .form-item .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.request-form .form-item .form-control.nice-select {
  height: auto;
  line-height: inherit;
  padding: 15.5px 30px;
}
.request-form .form-item .form-control.nice-select:after {
  top: 46%;
  width: 10px;
  height: 10px;
  border-color: var(--rr-color-text-body);
  border-bottom: 1px solid var(--rr-color-text-body);
  border-right: 1px solid var(--rr-color-text-body);
  right: 35px;
}
.request-form .form-item .form-control.nice-select .list {
  width: 100%;
}
.request-form .form-item .form-control.nice-select .list li {
  padding-left: 30px;
}
.request-form .form-item.message-item .form-control {
  border-radius: 15px;
}
.request-form .form-item.message-item .icon {
  top: 25px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.promo-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.promo-container .promo-img {
  position: absolute;
  z-index: 1;
  height: 560px;
  max-width: 340px;
  width: 100%;
}
.promo-container .promo-img:before {
  background-image: -webkit-linear-gradient(90deg, rgb(30, 19, 12) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(30, 19, 12) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.promo-container .promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-container .promo-img.promo-1 {
  top: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .promo-container .promo-img.promo-1 {
    left: -10%;
  }
}
@media (max-width: 1170px) {
  .promo-container .promo-img.promo-1 {
    display: none;
  }
}
.promo-container .promo-img.promo-2 {
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .promo-container .promo-img.promo-2 {
    right: -10%;
  }
}
@media (max-width: 1170px) {
  .promo-container .promo-img.promo-2 {
    display: none;
  }
}

.promo-content-wrap {
  max-width: 795px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1170px) {
  .promo-content-wrap {
    margin-left: 0;
  }
}

.promo-item .icon-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 120px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.promo-item .icon-wrap .icon {
  background-color: var(--rr-color-common-white);
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.promo-item .content .title {
  font-weight: 500;
  margin-bottom: 15px;
}
.promo-item .content p {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .promo-item .content p br {
    display: none;
  }
}

.promo-section-2 {
  position: relative;
  z-index: 1;
  padding-top: 55px;
}

.promo-section-2.promo-sec-3 {
  position: relative;
  z-index: 1;
  padding: 50px 0 30px;
  background-color: #1e130c;
}

.promo-section-2 .promo-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 520px;
  position: absolute;
  top: -240px;
  left: 0;
  z-index: -1;
}
.promo-section-2 .promo-bg:before {
  background-color: #1e130c;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.promo-item-2 {
  background-color: var(--rr-color-common-white);
  padding: 30px 25px 15px 25px;
  position: relative;
  z-index: 1;
  border: 1px solid #bbb8b6;
  overflow: hidden;
}
.promo-item-2 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.promo-item-2 .shape {
  background-color: #f6f2ef;
  height: 270px;
  width: 270px;
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.promo-item-2:before {
  background-image: linear-gradient(34deg, rgb(30, 19, 12) 0%, rgb(154, 132, 120) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.promo-item-2 .icon {
  margin-bottom: 25px;
}
.promo-item-2 .icon img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 60px;
}
.promo-item-2 .number {
  font-family: var(--rr-ff-heading);
  color: #1e130c;
  font-size: 100px;
  position: absolute;
  top: 20px;
  right: 25px;
  opacity: 0.05;
  font-weight: 600;
  line-height: 1;
}
.promo-item-2 .content {
  position: relative;
  z-index: 2;
}
.promo-item-2 .content .title {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.promo-item-2 .content .title:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 55px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.promo-item-2 .content p {
  margin-bottom: 45px;
}
.promo-item-2 .content .promo-arrow {
  text-align: center;
  height: 50px;
  width: 50px;
  border: 1px solid #b9b3af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.promo-item-2 .content .promo-arrow:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}
.promo-item-2:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.promo-item-2:hover:before {
  visibility: visible;
  opacity: 1;
}
.promo-item-2:hover .bg-img {
  visibility: visible;
  opacity: 0.03;
}
.promo-item-2:hover .shape {
  background-color: #5c4e47;
}

.promo-item-2:hover .content .title {
  color: var(--rr-color-common-white);
}
.promo-item-2:hover .content p {
  color: #cbc5c5;
}
.promo-item-2:hover .content .promo-arrow {
  color: var(--rr-color-common-white);
  border: 1px solid #98918d;
}
.promo-item-2.item-1 .content .title {
  margin-bottom: 70px;
}

.promo-box {
  background-color: #f6f2ef;
  position: relative;
  z-index: 1;
  padding: 30px 30px;
}

.promo-box .promo-mask-img {
  background-color: var(--rr-color-common-black);
  mask-image: url(../img/images/promo-mask.png);
  mask-repeat: no-repeat;
  width: 100%;
  height: 180px;
}
@media (max-width: 1170px) {
  .promo-box .promo-mask-img {
    display: none;
  }
}
.promo-box .promo-mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-box .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1170px) {
  .promo-box .shape {
    display: none;
  }
}
.promo-box .promo-box-content {
  display: flex;
  align-items: center;
  align-items: end;
  justify-content: space-between;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 0 30px;
  padding-bottom: 25px;
}
@media (max-width: 1399px) {
  .promo-box .promo-box-content {
    padding: 0 20px;
  }
}
@media (max-width: 1170px) {
  .promo-box .promo-box-content {
    flex-direction: column-reverse;
    align-items: baseline;
    row-gap: 30px;
  }
}
.promo-box .promo-box-content .left-content {
  display: grid;
  align-items: center;
  grid-template-columns: 55px 1fr;
  grid-gap: 20px;
}
.promo-box .promo-box-content .left-content .icon {
  background-color: var(--rr-color-common-white);
  height: 55px;
  width: 55px;
  border: 1px solid #b5afaa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-box .promo-box-content .left-content .content span {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.promo-box .promo-box-content .left-content .content a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  display: block;
}
.promo-box .promo-box-content .right-content {
  margin-top: -95px;
}
@media (max-width: 1170px) {
  .promo-box .promo-box-content .right-content {
    margin-top: 0;
  }
}
.promo-box .promo-box-content .right-content .icon {
  text-align: center;
  margin-bottom: 20px;
}
.promo-box .promo-box-content .right-content .title {
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 1170px) {
  .promo-box .promo-box-content .right-content .title {
    font-size: 20px;
  }
}
.promo-box .promo-box-content .right-content p {
  margin-bottom: 0;
}
@media (max-width: 1170px) {
  .promo-box .promo-box-content .right-content p {
    font-size: 14px;
  }
}

.promo-box-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding: 55px 50px;
  flex-wrap: wrap;
  row-gap: 20px;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .promo-box-2 {
    padding: 45px 20px;
  }
}
.promo-box-2 .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.promo-box-2 .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-box-2 .overlay {
  background-color: #1e130c;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.promo-box-2 .content span {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
.promo-box-2 .content .title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}
.promo-box-2 .counsel-box {
  background-color: var(--rr-color-theme-primary);
  height: 170px;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.promo-box-2 .counsel-box .shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.promo-box-2 .counsel-box .shape img {
  width: 100%;
  height: 100%;
}
.promo-box-2 .counsel-box .title {
  margin-bottom: 0;
  font-weight: 500;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.pricing-item-2 {
  border: 1px solid #4f2b13;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  transition: all .5s ease;
}
.pricing-item-2:hover {
  border: 1px solid #4f2b13;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(10px);
}


.pricing-item .pricing-thumb-wrap {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  width: 100%;
  background: #4c2b18;
}

.pricing-item .pricing-thumb-wrap.dealz-bg {
  background: #7f4220;
  transition: all .5s ease;
}

.pricing-item:hover .pricing-thumb-wrap.dealz-bg {
  background: #2c7a35;
}

.pricing-item .pricing-thumb-wrap .price-area {
  background-color: var(--rr-color-theme-primary);
  height: 100%;
  padding: .5em 1em;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}


.pricing-item.banr-1 .pricing-thumb-wrap .price-area {
  background-color: #ffb01e;
}

.pricing-item.banr-2 .pricing-thumb-wrap .price-area {
  background-color: #588eb5;
}

.pricing-item.banr-3 .pricing-thumb-wrap .price-area {
  background-color: #b56158;
}


.vip-banner {

  border-color: #ffb01e;

}

.vip-badge {

    background-color: #ffb01e;
    color: #000;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    padding: .3em .5em;
    line-height: 1;
    font-size: .8em;
    z-index: 4;

}


.pricing-item .pricing-thumb-wrap .price-area .price {
  color: var(--rr-color-common-white);
  font-size: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  align-items: start;
  line-height: 1;
  margin-bottom: 0;
}
.pricing-item .pricing-thumb-wrap .price-area .price span {
  font-size: 20px;
  margin-top: 7px;
}
.pricing-item .pricing-thumb-wrap .price-area p {
  color: var(--rr-color-common-white);
  margin-bottom: 0;
}
.pricing-item .pricing-thumb-wrap .pricing-img {
  max-width: 300px;
  width: 100%;
  height: 123px;
  position: absolute;
  top: 0;
  right: 0;
}
.pricing-item .pricing-thumb-wrap .pricing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pricing-item .pricing-thumb-wrap .pricing-title {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .pricing-item .pricing-thumb-wrap .pricing-title {
    justify-content: end;
    padding-right: 20px;
  }
}
.pricing-item .pricing-thumb-wrap .pricing-title .title {
  color: var(--rr-color-common-white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .pricing-item .pricing-thumb-wrap .pricing-title .title {
    font-size: 18px;
  }
}
.pricing-item .pricing-content {
  padding: 20px 20px;
}
.pricing-item .pricing-content .pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #bbb8b6;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.pricing-item .pricing-content .pricing-list li i {
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.pricing-item .pricing-content .pricing-list li.cross {
  background-color: #f6f2ef;
  border: 1px solid #f6f2ef;
}

.pricing-item-2 .pricing-thumb-wrap .price-area {
  border-radius: 0 100px 100px 0;
  position: absolute;
  left: 0;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  z-index: 2;
}

.pricing-item-2 .pricing-thumb-wrap .pricing-title {
  max-width: 100%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pricing-item-2 .pricing-thumb-wrap .pricing-title .title {
  font-size: 22px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .pricing-item-2 .pricing-thumb-wrap .pricing-title .title {
    font-size: 22px;
  }
}
.pricing-item-2 .pricing-thumb-wrap .pricing-title span {
  font-family: var(--rr-ff-body);
  display: block;
  font-size: 22px;
  color: #8b827d;
  margin-top: 5px;
}

.pricing-item-2 .pricing-thumb-wrap.dealz-2 .pricing-title .title {

  font-size: 28px;

}

.pricing-item-2 .pricing-thumb-wrap.dealz-2 .pricing-title span {
  font-size: 28px;
}



.pricing-item-2.active .pricing-thumb-wrap .pricing-title:before {
  visibility: visible;
  opacity: 1;
}
.pricing-item-2.active .pricing-thumb-wrap .pricing-title .title {
  color: var(--rr-color-common-white);
}
.pricing-item-2.active .pricing-thumb-wrap .pricing-title span {
  color: var(--rr-color-common-white);
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.book-item {
  background-color: #fafafa;
  display: grid;
  align-items: center;
  grid-template-columns: 280px 1fr;
  grid-gap: 20px;
  padding: 20px;
  border: 1px solid #bab7b5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .book-item {
    grid-template-columns: 1fr;
  }
}
.book-item .book-thumb-wrap {
  background-color: var(--rr-color-common-white);
  max-width: 280px;
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.book-item .book-thumb-wrap .book-thumb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 160px;
}
.book-item .book-thumb-wrap .book-icon-list {
  position: absolute;
  top: 0;
  left: -20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.book-item .book-thumb-wrap .book-icon-list li {
  list-style: none;
}
.book-item .book-thumb-wrap .book-icon-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.book-item .book-thumb-wrap .book-icon-list li a {
  background-color: #f6f2ef;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-item .book-thumb-wrap .book-icon-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.book-item .book-thumb-wrap .cart-btn {
  position: absolute;
  bottom: -2px;
  left: 0;
}
.book-item .book-thumb-wrap .cart-btn a {
  display: flex;
  align-items: center;
}
.book-item .book-thumb-wrap .cart-btn a i {
  background-color: #f6f2ef;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.book-item .book-thumb-wrap .cart-btn a span {
  background: #1e130c;
  background: -webkit-linear-gradient(261deg, #1e130c 0%, #9a8478 100%);
  background: linear-gradient(261deg, #1e130c 0%, #9a8478 100%);
  color: var(--rr-color-common-white);
  padding: 7px 25px 7px 25px;
  border-radius: 0 100px 100px 0;
  font-size: 14px;
  font-weight: 500;
  height: 100%;
  display: inline-block;
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.book-item .book-thumb-wrap .cart-btn a:hover span {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.book-item .content {
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  margin-left: 10px;
}
@media only screen and (max-width: 992px) {
  .book-item .content {
    transform: rotate(0);
    writing-mode: inherit;
    margin-left: 0;
  }
}
.book-item .content .title {
  margin-bottom: 0px;
  margin-left: 10px;
}
.book-item .content span {
  color: var(--rr-color-theme-primary);
  font-weight: 500;
}
.book-item:hover {
  background-color: #f6f2ef;
}
.book-item:hover .book-thumb-wrap .book-icon-list {
  left: 0;
  visibility: visible;
  opacity: 1;
}

.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-btn a {
  background-color: #f6f2ef;
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #b2a198;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--rr-color-heading-primary);
}
.book-btn a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.skill-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.skill-section .skill-img {
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.skill-section .skill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .skill-section .skill-img {
    display: none;
  }
}
.skill-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
@media (max-width: 1170px) {
  .skill-section .shape {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .skill-section .shape {
    display: none;
  }
}
.skill-section .shape img {
  width: 100%;
  height: 100%;
}

.skill-content {
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .skill-content {
    padding-left: 0;
  }
}
.skill-content .about-skills-items .skills-item .title {
  font-size: 24px;
  color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .skill-content .about-skills-items .skills-item .title {
    font-size: 18px;
  }
}
.skill-content .about-skills-items .skills-item .progress {
  background-color: #4b423d;
  height: 1px;
}
.skill-content .about-skills-items .skills-item .progress .progress-bar {
  height: 3px;
}
.skill-content .about-skills-items .skills-item .progress .progress-bar span {
  background-color: transparent;
  border: 1px solid var(--rr-color-theme-primary);
  color: var(--rr-color-theme-primary);
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.process-section {
  background-color: var(--rr-color-grey-2);
}

@media (max-width: 1170px) {
  .process-item-wrapper {
    max-width: 880px;
    margin: 0 auto;
  }
}

.process-item {
  background-color: var(--rr-color-common-white);
  padding: 30px 30px;
  display: grid;
  align-items: center;
  grid-template-columns: 120px 1fr;
  grid-gap: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .process-item {
    grid-template-columns: 1fr;
  }
}
.process-item:not(:last-of-type) {
  margin-bottom: 24px;
}
.process-item:before {
  background-image: linear-gradient(to right, #1f140d, #3a2d26, #58473f, #77645a, #988276);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.process-item .number {
  background-color: var(--rr-color-common-white);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid #e0dfde;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .process-item .number {
    display: none;
  }
}
.process-item .number:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 4px;
  left: 4px;
}
.process-item .number:after {
  background-color: var(--rr-color-common-white);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.process-item .number span {
  position: relative;
  z-index: 5;
  transform: rotate(-45deg);
}
.process-item .icon-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.process-item .icon-wrap .icon {
  background-color: var(--rr-color-common-white);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.process-item .content {
  position: relative;
  z-index: 5;
}
.process-item .content .title {
  font-size: 24px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.process-item .content p {
  font-size: 15px;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .process-item .content p br {
    display: none;
  }
}
.process-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.process-item:hover .content .title {
  color: var(--rr-color-common-white);
}
.process-item:hover .content p {
  color: #cbc5c5;
}
.process-item.item-2 .number {
  left: auto;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.process-item.item-2 .number:before {
  top: auto;
  left: 4px;
  bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .process-item.item-2 .number {
    display: none;
  }
}
.process-item.item-3 .number {
  bottom: auto;
  top: -40px;
}
.process-item.item-3 .number:before {
  bottom: 4px;
  top: auto;
  left: auto;
  right: 4px;
}
@media only screen and (max-width: 767px) {
  .process-item.item-3 .number {
    display: none;
  }
}
.process-item.item-4 .number {
  left: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.process-item.item-4 .number:before {
  bottom: 4px;
  top: 4px;
  left: auto;
  right: 4px;
}
@media only screen and (max-width: 767px) {
  .process-item.item-4 .number {
    display: none;
  }
}

.process-item-wrap.wrap-2 .process-item {
  grid-template-columns: 1fr 120px;
}
@media only screen and (max-width: 767px) {
  .process-item-wrap.wrap-2 .process-item {
    grid-template-columns: 1fr;
  }
}
.process-item-wrap.wrap-2 .process-item .content {
  text-align: right;
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.slider-section {
  position: relative;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
  z-index: 2;
}

.ps-slider {
  position: relative;
  z-index: 2;
}
.ps-slider .swiper-arrow {
  background-color: rgba(30, 19, 12, 0.6);
  padding: 20px 8px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
  position: absolute;
  top: 46%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .ps-slider .swiper-arrow {
    display: none;
  }
}

.slider-item {
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 150px 0 150px 0;
  background-size: cover;
  background-attachment: fixed;
}
.slider-item .slide-img-wrap {
  height: 965px;
}
@media only screen and (max-width: 992px) {
  .slider-item .slide-img-wrap {
    height: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item .slide-img-wrap {
    height: 450px;
  }
}
.slider-item .slide-img-wrap img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slider-item .slider-content-wrap {
  background-color: var(--rr-color-common-white);
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 1108px;
  width: 1108px;
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-top: 120px;
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap {
    bottom: -100%;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap {
    height: 900px;
    width: 900px;
    bottom: -120%;
  }
}
.slider-item .slider-content-wrap .slider-content {
  text-align: center;
}
.slider-item .slider-content-wrap .slider-content .sub-title {
  font-size: 24px;
  color: var(--rr-color-theme-primary);
  font-weight: 500;
  font-style: italic;
  position: relative;
  z-index: 1;
  padding: 0 15px;
  width: 370px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .slider-content .sub-title {
    font-size: 18px;
    width: 300px;
  }
}
.slider-item .slider-content-wrap .slider-content .sub-title:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.slider-item .slider-content-wrap .slider-content .sub-title:after {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
}
.slider-item .slider-content-wrap .slider-content .slider-title {
  color: var(--rr-color-heading-primary);
  font-family: var(--rr-ff-heading);
  font-size: 100px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap .slider-content .slider-title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .slider-content .slider-title {
    font-size: 40px;
  }
}
.slider-item .slider-content-wrap .slider-content .slider-title span {
  color: var(--rr-color-theme-primary);
  display: block;
  margin-top: 10px;
}

.ps-swiper-pagination {
  height: 100%;
  width: auto !important;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50px !important;
  z-index: 2;
}
@media (max-width: 1399px) {
  .ps-swiper-pagination {
    left: 25px !important;
  }
}
@media (max-width: 1250px) {
  .ps-swiper-pagination {
    display: none;
  }
}
.ps-swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 50%;
  opacity: 1;
  display: block;
}
.ps-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--rr-color-common-white);
}
.ps-swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  background-color: var(--rr-color-common-white);
  width: 5px;
  height: 5px;
  border: 1px solid var(--rr-color-common-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ps-swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
  margin-bottom: 10px;
}

/* Text Animation */
.ps-animation,
.ps-animation span {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.ps-animation span {
  display: inline-block;
}

/* Fade Effect */
.ps-fadeIn {
  animation-name: asFadeIn;
}

@keyframes asFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ps-fadeInLeft {
  animation-name: asFadeInLeft;
}

@keyframes asFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
  }
}
.ps-fadeInRight {
  animation-name: asFadeInRight;
}

@keyframes asFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
  }
}
.ps-fadeInDown {
  animation-name: asFadeInTop;
}

@keyframes asFadeInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
  }
}
.ps-fadeInUp {
  animation-name: asFadeInBottom;
}

@keyframes asFadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
  }
}
/* Move From Effect */
.ps-moveFromLeft {
  animation-name: asMoveFromLeft;
}

@keyframes asMoveFromLeft {
  from {
    visibility: hidden;
    transform: translateX(-50px);
  }
  to {
    visibility: visible;
  }
}
.ps-moveFromRight {
  animation-name: asMoveFromRight;
}

@keyframes asMoveFromRight {
  from {
    visibility: hidden;
    transform: translateX(50px);
  }
  to {
    visibility: visible;
  }
}
.ps-moveFromTop {
  animation-name: asMoveFromTop;
}

@keyframes asMoveFromTop {
  from {
    visibility: hidden;
    transform: translateY(-50px);
  }
  to {
    visibility: visible;
  }
}
.ps-moveFromBottom {
  animation-name: asMoveFromBottom;
}

@keyframes asMoveFromBottom {
  from {
    visibility: hidden;
    transform: translateY(50px);
  }
  to {
    visibility: visible;
  }
}
/* Blur Effect */
.ps-blurIn {
  animation-name: asBlurIn;
}

@keyframes asBlurIn {
  from {
    filter: blur(20px);
    opacity: 0;
  }
}
.ps-blurInLeft {
  animation-name: asBlurInLeft;
}

@keyframes asBlurInLeft {
  from {
    transform: translateX(50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.ps-blurInRight {
  animation-name: asBlurInRight;
}

@keyframes asBlurInRight {
  from {
    transform: translateX(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.ps-blurInTop {
  animation-name: asBlurInTop;
}

@keyframes asBlurInTop {
  from {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.ps-blurInBottom {
  animation-name: asBlurInBottom;
}

@keyframes asBlurInBottom {
  from {
    transform: translateY(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}
/* Zoom Effect */
.ps-zoomIn {
  animation-name: asZoomIn;
}

@keyframes asZoomIn {
  from {
    transform: scale(5);
    opacity: 0;
  }
}
.ps-zoomInLeft {
  animation-name: asZoomInLeft;
}

@keyframes asZoomInLeft {
  from {
    transform: scale(5) translateX(-50%);
    opacity: 0;
  }
}
.ps-zoomInRight {
  animation-name: asZoomInRight;
}

@keyframes asZoomInRight {
  from {
    transform: scale(5) translateX(50%);
    opacity: 0;
  }
}
.ps-zoomInTop {
  animation-name: asZoomInTop;
}

@keyframes asZoomInTop {
  from {
    transform: scale(10) translateY(-50%);
    opacity: 0;
  }
}
.ps-zoomInBottom {
  animation-name: asZoomInBottom;
}

@keyframes asZoomInBottom {
  from {
    transform: scale(10) translateY(50%);
    opacity: 0;
  }
}
/* Flip Effect */
.ps-flipInTop {
  animation-name: asFlipInTop;
}

@keyframes asFlipInTop {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: 0 0;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}
.ps-flipInBottom {
  animation-name: asFlipInBottom;
}

@keyframes asFlipInBottom {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: bottom;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}
/* Roll Effect */
.ps-rollFromLeft {
  animation-name: asRollFromLeft;
}

@keyframes asRollFromLeft {
  from {
    transform: translateX(-60px) perspective(600px) rotateY(180deg);
    opacity: 0;
  }
}
.ps-rollFromRight {
  animation-name: asRollFromRight;
}

@keyframes asRollFromRight {
  from {
    transform: translateX(60px) perspective(600px) rotateY(-180deg);
    opacity: 0;
  }
}
.ps-rollFromTop {
  animation-name: asRollFromTop;
}

@keyframes asRollFromTop {
  from {
    transform: translateY(-60px) perspective(600px) rotateX(180deg);
    opacity: 0;
  }
}
.ps-rollFromBottom {
  animation-name: asRollFromBottom;
}

@keyframes asRollFromBottom {
  from {
    transform: translateY(60px) perspective(600px) rotateX(-180deg);
    opacity: 0;
  }
}
/* Rotate Skate Effect */
.ps-rotateSkateInRight {
  animation-name: asRotateSkateInRight;
}

@keyframes asRotateSkateInRight {
  from {
    transform: scaleX(0.2) translateX(100px);
    opacity: 0;
  }
}
.ps-rotateSkateInLeft {
  animation-name: asRotateSkateInLeft;
}

@keyframes asRotateSkateInLeft {
  from {
    transform: scaleX(0.2) translateX(-100px);
    opacity: 0;
  }
}
.ps-rotateSkateInTop {
  animation-name: asRotateSkateInTop;
}

@keyframes asRotateSkateInTop {
  from {
    transform: scaleY(0.2) translateY(-100px);
    opacity: 0;
  }
}
.ps-rotateSkateInBottom {
  animation-name: asRotateSkateInBottom;
}

@keyframes asRotateSkateInBottom {
  from {
    transform: scaleY(0.2) translateY(100px);
    opacity: 0;
  }
}
/* PopUp Effect */
.ps-popUp {
  animation-name: asPopUp;
}

@keyframes asPopUp {
  0% {
    visibility: hidden;
  }
  50% {
    transform: scale(1.1);
    visibility: visible;
  }
}
.ps-popUpLeft {
  animation-name: asPopUpLeft;
}

@keyframes asPopUpLeft {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(-20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}
.ps-popUpRight {
  animation-name: asPopUpRight;
}

@keyframes asPopUpRight {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}
/* Kenburns Top */
.swiper-slide-active .kenburns-top {
  -webkit-animation-name: kenburns-top;
  animation-name: kenburns-top;
}

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.08) translateY(-15px);
    transform: scale(1.08) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.08) translateY(-15px);
    transform: scale(1.08) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
/* !END: Theme Slider CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.choose-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.choose-tab .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: none;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .choose-tab .nav-tabs {
    flex-direction: column;
  }
}
.choose-tab .nav-tabs .nav-item {
  width: 33.33%;
}
@media only screen and (max-width: 767px) {
  .choose-tab .nav-tabs .nav-item {
    width: 100%;
  }
}
.choose-tab .nav-tabs .nav-link {
  font-family: var(--rr-ff-heading);
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  border: none;
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  padding: 48px 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .choose-tab .nav-tabs .nav-link {
    font-size: 18px;
    padding: 20px 0;
  }
}
.choose-tab .nav-tabs .nav-link:before {
  background-image: linear-gradient(180deg, rgb(154, 132, 120) 18%, rgb(30, 19, 12) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.choose-tab .nav-tabs .nav-link.active {
  color: var(--rr-color-common-white);
}
.choose-tab .nav-tabs .nav-link.active:before {
  visibility: visible;
  opacity: 1;
}
.choose-tab .tab-content {
  margin-top: 60px;
}
.choose-tab .tab-content .choose-img-wrap {
  max-width: 630px;
  width: 100%;
  height: 340px;
  position: relative;
}
.choose-tab .tab-content .choose-img-wrap .choose-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 576px;
  width: 100%;
}
.choose-tab .tab-content .choose-img-wrap .choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.choose-tab .tab-content .choose-img-wrap .choose-text {
  background-image: url(../img/bg-img/choose-text-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  position: absolute;
  bottom: 40px;
  right: 0;
  height: 130px;
  max-width: 285px;
  width: 100%;
}
.choose-tab .tab-content .choose-img-wrap .choose-text .title {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .choose-tab .tab-content .choose-content {
    margin-top: 40px;
  }
}
.choose-tab .tab-content .choose-content p {
  max-width: 620px;
  width: 100%;
  margin-bottom: 40px;
}
.choose-tab .tab-content .choose-list {
  list-style: none;
}
.choose-tab .tab-content .choose-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.choose-tab .tab-content .choose-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.choose-tab .tab-content .choose-list li i {
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Call CSS
----------------------------------------*/
.call-section {
  height: 540px;
  position: relative;
  z-index: 2;
}
.call-section .bg-item .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .call-section .bg-item .shape {
    display: none;
  }
}
.call-section .bg-item .call-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
}
.call-section .bg-item .call-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.call-section .bg-item .call-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .call-section .bg-item .call-bg {
    width: 50%;
  }
}
.call-section .bg-item .call-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-content-wrap {
  background-image: linear-gradient(180deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  display: inline-flex;
  align-items: center;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 61%;
  transform: translate(-50%, -50%);
  padding: 40px 30px 30px 30px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .call-content-wrap {
    padding: 20px;
    max-width: 200px;
    width: 100%;
    left: 40%;
  }
}
.call-content-wrap .call-content .title {
  font-size: 18px;
  font-weight: 500;
  color: var(--rr-color-common-white);
  margin-bottom: 0;
}
.call-content-wrap .call-content .shape {
  background-color: #3f3129;
  height: 50px;
  width: 50px;
  position: absolute;
  bottom: -49px;
  left: 30px;
  transform: rotate(-180deg);
  z-index: -1;
  clip-path: polygon(51% 33%, 0% 100%, 100% 100%);
}
.call-content-wrap .call-content .icon {
  background-color: var(--rr-color-common-white);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 30px;
}
.call-content-wrap .call-content .icon i {
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
}

/* !END: Call CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.top-grid-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 40px;
}
.top-grid-content .shop-tab-nav {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.top-grid-content .shop-tab-nav .nav-tabs {
  border: none;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 6px;
  padding: 10px 20px;
  column-gap: 15px;
}
.top-grid-content .shop-tab-nav .nav-tabs .nav-link {
  border: none;
  padding: 0;
}
.top-grid-content .shop-tab-nav .nav-tabs .nav-link svg {
  color: var(--rr-color-text-body);
  fill: var(--rr-color-text-body);
}
.top-grid-content .shop-tab-nav .nav-tabs .nav-link.active svg {
  color: var(--rr-color-heading-primary);
}
.top-grid-content .shop-select {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #bab7b5;
}
.top-grid-content .shop-select ul {
  left: auto;
  right: 0;
}

.shop-sidebar .filter-box .range-slider input {
  width: 100%;
  background-color: var(--rr-color-theme-primary);
  accent-color: var(--rr-color-theme-primary);
  border: none;
}
.shop-sidebar .filter-box .range-slider .range-slider-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.shop-sidebar .filter-box .range-slider .range-slider-output .price {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Award CSS
----------------------------------------*/
.award-wrap {
  background-color: #f6f2ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .award-wrap {
    display: grid;
    grid-template-columns: 400px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .award-wrap {
    grid-template-columns: 1fr;
  }
}
.award-wrap .award-img {
  max-width: 360px;
  height: 514px;
}
.award-wrap .award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .award-wrap .award-img {
    display: none;
  }
}
.award-wrap .trophy-img {
  max-width: 535px;
  width: 100%;
  height: 514px;
}
@media only screen and (max-width: 992px) {
  .award-wrap .trophy-img {
    height: 470px;
  }
}
@media only screen and (max-width: 767px) {
  .award-wrap .trophy-img {
    height: 100%;
    width: 100%;
  }
}
.award-wrap .trophy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-items {
  width: 425px;
}
@media only screen and (max-width: 767px) {
  .award-items {
    width: 100%;
  }
}
.award-items .award-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .award-items .award-item {
    padding: 30px 20px;
  }
}
.award-items .award-item:not(:last-of-type) {
  border-bottom: 1px solid #cbc5c2;
}
.award-items .award-item .left-content .year {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-theme-primary);
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .award-items .award-item .left-content .year {
    font-size: 20px;
  }
}
.award-items .award-item .left-content .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .award-items .award-item .left-content .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .award-items .award-item .left-content .title {
    font-size: 16px;
  }
}
.award-items .award-item p {
  text-align: center;
  margin-bottom: 0;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .award-items .award-item p {
    display: none;
  }
}
.award-items .award-item .icon {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.award-items .award-item .icon img {
  width: 80px;
  height: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.award-items .award-item .icon .hover-img {
  display: none;
}
.award-items .award-item:hover {
  background-color: #1e130c;
  width: 760px;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid #1e130c;
}
@media only screen and (max-width: 992px) {
  .award-items .award-item:hover {
    width: 700px;
  }
}
.award-items .award-item:hover .left-content .year {
  color: var(--rr-color-common-white);
}
.award-items .award-item:hover .left-content .title {
  color: var(--rr-color-common-white);
}
.award-items .award-item:hover p {
  color: var(--rr-color-common-white);
  display: block;
}
@media only screen and (max-width: 767px) {
  .award-items .award-item:hover p {
    display: none;
  }
}
.award-items .award-item:hover .icon .main-img {
  display: none;
}
.award-items .award-item:hover .icon .hover-img {
  display: block;
}

/* !END: Award CSS */
/**----------------------------------------
    START: Shop Details CSS
----------------------------------------*/
.product-details-wrap .product-slider-wrap {
  display: grid;
  grid-template-columns: 1fr 112px;
  grid-gap: 24px;
  padding: 30px;
  border: 1px solid rgba(30, 19, 12, 0.302);
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-slider-wrap {
    grid-template-columns: 1fr;
  }
}
.product-details-wrap .product-gallary {
  position: relative;
  margin: 0;
  height: 100%;
}
.product-details-wrap .product-gallary .sale {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}
.product-details-wrap .product-gallary .gallary-item {
  background-color: var(--rr-color-common-white);
  height: 100%;
  height: 600px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary .gallary-item {
    height: 450px;
  }
}
.product-details-wrap .product-gallary .gallary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-details-wrap .product-gallary-thumb {
  height: 375px;
}
@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary-thumb {
    max-width: 100%;
    padding: 0 15px;
    left: 0;
  }
}
.product-details-wrap .product-gallary-thumb .thumb-item {
  height: 112px;
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE0E3;
  cursor: pointer;
}
.product-details-wrap .product-gallary-thumb .thumb-item img {
  width: auto;
  height: auto;
  object-fit: inherit;
}
.product-details-wrap .product-gallary-thumb .swiper-slide-thumb-active .thumb-item {
  border: 1px solid var(--rr-color-theme-primary);
}

.product-info {
  padding-left: 20px;
}
@media only screen and (max-width: 992px) {
  .product-info {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-info {
    padding-top: 40px;
  }
}
.product-info .category {
  color: var(--rr-color-theme-primary);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}
.product-info .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media only screen and (max-width: 992px) {
  .product-info .title {
    font-size: 24px;
  }
}
.product-info .rating-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product-info .rating-wrap .rating {
  display: flex;
  align-items: center;
  list-style: none;
}
.product-info .rating-wrap .rating li {
  color: var(--rr-color-heading-primary);
}
.product-info .rating-wrap .rating li:not(:last-of-type) {
  margin-right: 2px;
}
.product-info .rating-wrap span {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}
.product-info .price {
  font-size: 22px;
  nav-down: 600;
  margin-bottom: 30px;
}
.product-info .price span {
  font-weight: 400;
  color: var(--rr-color-text-body);
  text-decoration: line-through;
  margin-left: 10px;
}
.product-info .product-desc-wrap {
  border-top: 1px solid rgba(30, 19, 12, 0.302);
  border-bottom: 1px solid rgba(30, 19, 12, 0.302);
  padding: 20px 0;
  margin-bottom: 20px;
}
.product-info .product-desc-wrap .desc {
  margin-bottom: 0;
  margin-bottom: 10px;
}
.product-info .product-desc-wrap .view-text {
  font-size: 16px;
  color: var(--rr-color-heading-primary);
}
.product-info .product-desc-wrap .view-text i {
  margin-right: 10px;
}
.product-info .item-left-line {
  margin-bottom: 30px;
}
.product-info .item-left-line .line {
  background: #EBEBEB;
  height: 4px;
  width: 100%;
  position: relative;
  margin-top: 10px;
}
.product-info .item-left-line .line:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-info .details-list {
  list-style: none;
}
.product-info .details-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--rr-color-heading-primary);
}
.product-info .details-list li i {
  width: 20px;
}
.product-info .details-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.product-info .product-btn {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
}
.product-info .product-btn input {
  background-color: var(--rr-color-theme-primary);
  color: #fff;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  text-align: center;
}
.product-info .product-btn .cart-btn-wrap-2 {
  width: 100%;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-common-white);
  width: 100%;
  border-radius: 100px;
  padding: 15px 30px;
  text-align: center;
  justify-content: center;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:before {
  display: none;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:hover {
  background-color: var(--rr-color-heading-primary);
  color: var(--rr-color-common-white);
}
.product-info .shop-details-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
}
.product-info .product-meta {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.product-info .product-meta li a {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}

.tab-navigation {
  border-bottom: 1px solid var(--rr-color-border-1);
  padding-bottom: 30px;
}

.tab-navigation button {
  color: var(--rr-color-text-body);
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: 0;
  padding: 0;
  margin-right: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tab-navigation button.active,
.tab-navigation button:hover {
  color: var(--rr-color-heading-primary);
}

/*** 7.2 - Tab Description ***/
.tab-content .tab-pane {
  margin-top: 40px;
}
.tab-content .tab-pane .desc-wrap {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 535px;
}
@media only screen and (max-width: 992px) {
  .tab-content .tab-pane .desc-wrap {
    grid-template-columns: 1fr;
  }
}
.tab-content .tab-pane .desc-wrap .right-content img {
  height: 220px;
  max-width: 535px;
  width: 100%;
  object-fit: cover;
}

.description-meta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.description-meta li span {
  color: var(--rr-color-theme-primary);
  font-weight: 600;
  margin-right: 5px;
}

/*** 7.3 - Tab Additional Information ***/
.product-table {
  background-color: var(--rr-color-grey-1);
  margin: 0;
  margin-top: 40px;
  --bs-table-bg: transparent;
}
.product-table:not(caption) > * > * {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table > :not(:last-child) > :last-child > * {
  border-color: var(--rr-color-border-1);
}

.product-table tbody tr td,
.product-table thead tr th {
  text-align: center;
}

.product-table tbody tr td:not(:last-of-type),
.product-table thead tr th:not(:last-of-type) {
  border-right: 1px solid var(--rr-color-border-1);
}

.product-table tbody tr td:not(:last-of-type) {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table thead tr th {
  color: var(--rr-color-theme-primary);
}

.product-table tbody tr td {
  color: var(--rr-color-heading-primary);
  padding: 15px 0;
}

/*** 7.4 - Tab Review ***/
.review .comment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.review .comment-list > li {
  background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 30px;
  align-items: center;
  padding: 40px;
}

.review .comment-list .comment-thumb img {
  border-radius: 50%;
}

.review .comment-list .comment-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review .comment-list .comment-text h3 span {
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  display: block;
}

.review .comment-list .comment-text p {
  margin: 0;
}

.reviewr-wrap {
  padding-right: 20px;
}
@media only screen and (max-width: 992px) {
  .reviewr-wrap {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.reviewr-wrap .review-list .review-item {
  display: grid;
  align-items: center;
  grid-template-columns: 90px 1fr;
  grid-gap: 15px;
  padding: 30px;
  border: 1px solid rgba(30, 19, 12, 0.302);
}
@media only screen and (max-width: 767px) {
  .reviewr-wrap .review-list .review-item {
    grid-template-columns: 1fr;
  }
}
.reviewr-wrap .review-list .review-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.reviewr-wrap .review-list .review-item img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.reviewr-wrap .review-list .review-item .content .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name span {
  color: var(--rr-color-text-body);
  font-size: 15px;
  display: block;
  margin-top: 7px;
}
.reviewr-wrap .review-list .review-item .content .content-top ul {
  list-style: none;
}
.reviewr-wrap .review-list .review-item .content .content-top ul li {
  display: inline-flex;
  color: var(--rr-color-theme-primary);
}
.reviewr-wrap .review-list .review-item .content .content-top ul li:not(:last-of-type) {
  margin-right: 2px;
}
.reviewr-wrap .review-list .review-item .content p {
  margin-bottom: 0;
}

.review-form-wrap .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.review-form-wrap .publish {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}
.review-form-wrap .review-box {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.review-form-wrap .review-box span {
  color: var(--rr-color-heading-primary);
}
.review-form-wrap .review-box .review {
  list-style: none;
}
.review-form-wrap .review-box .review li {
  display: inline-flex;
  color: var(--rr-color-theme-primary);
}
.review-form-wrap .review-box .review li:not(:last-of-type) {
  margin-right: 2px;
}
.review-form-wrap .review-form {
  background-color: transparent;
  padding: 0;
  border: none;
  margin-top: 40px;
}
.review-form-wrap .checkbox-wrap {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.review-form-wrap .checkbox-wrap input {
  width: 15px;
  height: 15px;
  accent-color: var(--rr-color-theme-primary);
}
.review-form-wrap .checkbox-wrap label {
  color: var(--rr-color-text-body);
  cursor: pointer;
  margin-left: 10px;
}
.review-form-wrap .submit-btn .rr-primary-btn {
  padding: 15px 35px;
}

/* !END: Shop Details CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.appointnment-list-wrap {
  background-color: #f6f2ef;
  max-width: 650px;
  width: 100%;
  padding: 60px 70px;
  margin-right: 20px;
}
@media (max-width: 1170px) {
  .appointnment-list-wrap {
    margin-right: 0;
  }
}
.appointnment-list-wrap .title {
  text-align: center;
  margin-bottom: 40px;
}
.appointnment-list-wrap .appointnment-list li {
  font-family: var(--rr-ff-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--rr-color-heading-primary);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.appointnment-list-wrap .appointnment-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.appointnment-list-wrap .appointnment-list li span {
  background-color: #f6f2ef;
}
.appointnment-list-wrap .appointnment-list li span:nth-child(1) {
  padding-right: 20px;
}
.appointnment-list-wrap .appointnment-list li span:nth-child(2) {
  padding-left: 20px;
}
.appointnment-list-wrap .appointnment-list li:before {
  background-color: #cbc5c2;
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.appointnment-list-wrap .appointment-btn {
  margin-top: 40px;
}

.appointment-content {
  margin-left: 20px;
}
@media (max-width: 1170px) {
  .appointment-content {
    margin-left: 0;
  }
}
.appointment-content .appointment-items {
  max-width: 375px;
  width: 100%;
}
.appointment-content .appointment-items .appointment-item {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
}
.appointment-content .appointment-items .appointment-item:not(:last-of-type) {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d2d0ce;
}
.appointment-content .appointment-items .appointment-item .icon {
  background-color: #f6f2ef;
  color: var(--rr-color-heading-primary);
  font-size: 18px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment-content .appointment-items .appointment-item .content span {
  color: #8b827d;
  display: block;
  font-size: 16px;
}
.appointment-content .appointment-items .appointment-item .content a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 18px;
  font-weight: 600;
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--rr-color-common-white);
  border-left: 1px solid var(--rr-color-border-1);
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: scroll;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 60px 40px;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 63px;
  color: var(--grey-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-trigger.close:hover {
  color: var(--rr-color-theme-primary);
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 200px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

.side-menu-list li a {
  font-size: 15px;
}

.side-menu-list li p {
  font-size: 15px;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .sidebar-area {
    width: 400px;
    padding: 60px 30px;
    justify-content: center;
  }
  .side-menu-logo {
    margin-bottom: 50px;
  }
  .side-menu-wrap {
    margin-bottom: 70px;
  }
  .side-menu-header h3 {
    display: none;
  }
  .side-menu-list li a {
    font-size: 14px;
  }
  .side-menu-list li p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sidebar-area {
    width: 320px;
    padding: 60px 20px 60px 20px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
  .side-menu-list li a {
    font-size: 13px;
  }
  .side-menu-list li p {
    font-size: 13px;
  }
}
.side-menu-logo {
  max-width: 200px;
}
@media only screen and (max-width: 767px) {
  .side-menu-logo {
    max-width: 150px;
  }
}

.side-menu-about {
  margin: 50px 0 50px 0;
}
@media only screen and (max-width: 992px) {
  .side-menu-about {
    display: none;
  }
}

.side-menu-about p {
  margin: 25px 0;
}

.side-menu-header h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 20px;
}

.side-menu-list {
  margin: 25px 0 35px 0;
}

.side-menu-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: var(--rr-color-theme-primary);
  font-size: 12px;
  color: var(--rr-color-common-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li p {
  font-weight: 600;
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  color: var(--rr-color-heading-primary);
  padding-left: 10px;
}
.side-menu-list li a:hover {
  color: var(--rr-color-heading-primary);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}
.side-menu-social li {
  display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
  margin-right: 10px;
}
.side-menu-social li a {
  background-color: var(--rr-color-border-1);
  font-size: 17px;
  color: var(--rr-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.side-menu-social li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-heading-primary);
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-img {
  width: 100%;
  height: 400px;
  position: relative;
}
.blog-details-img .date {
  background-color: var(--rr-color-common-white);
  position: absolute;
  bottom: 0;
  left: 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: var(--rr-color-heading-primary);
  font-weight: 500;
  line-height: 1;
  padding: 20px 10px;
  z-index: 5;
}
.blog-details-img .overlay {
  background-color: rgba(31, 20, 12, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-details-img .play-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-details-img .play-btn a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  height: 80px;
  width: 80px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.blog-details-img .play-btn a .ripple {
  height: 80px;
  width: 80px;
}
.blog-details-img .play-btn a .ripple:before, .blog-details-img .play-btn a .ripple:after {
  height: 80px;
  width: 80px;
}
.blog-details-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
@media only screen and (max-width: 992px) {
  .blog-details-img {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-img {
    height: 300px;
  }
}

.blog-details-content .details-title {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-title {
    font-size: 24px;
  }
}
.blog-details-content .post-meta li {
  font-family: var(--rr-ff-body);
  text-transform: capitalize;
  font-size: 16px;
  color: var(--rr-color-text-body);
  font-weight: 500;
}
.blog-details-content .post-meta li i {
  background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.blog-details-content .details-img-wrap {
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 24px;
}
.blog-details-content .details-img-wrap img {
  max-width: 430px;
  width: 100%;
}
@media (max-width: 1170px) {
  .blog-details-content .details-img-wrap img {
    max-width: 280px;
  }
}
@media only screen and (max-width: 992px) {
  .blog-details-content .details-img-wrap img {
    max-width: 350px;
  }
}
.blog-details-content .blog-details-list {
  margin-left: 20px;
  margin-bottom: 30px;
}
.blog-details-content .blog-details-list li {
  font-size: 16px;
  font-weight: 400;
}

blockquote {
  background-color: var(--rr-color-heading-primary);
  overflow: hidden;
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 20px;
  padding: 20px 40px;
}
blockquote .quote {
  width: 60px;
  height: 50px;
}
blockquote .quote img {
  width: 60px;
  height: 50px;
}
blockquote p {
  color: #cbc5c5;
  margin-bottom: 0;
}

.tags {
  margin-top: 40px;
}
.tags .social-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.tags .social-list-wrap .follow {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
.tags .social-list-wrap .social-list {
  display: flex;
  align-items: center;
  column-gap: 15px;
  list-style: none;
}
.tags .social-list-wrap .social-list li:not(:last-of-type) {
  margin-right: 5px;
}
.tags .social-list-wrap .social-list li a {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
}
.tags .social-list-wrap .social-list li a:hover {
  color: var(--rr-color-heading-primary);
}

.comments-area {
  margin-top: 50px;
}
.comments-area .title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

.comment-item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 110px 1fr;
  grid-gap: 25px;
}
@media only screen and (max-width: 767px) {
  .comment-item {
    grid-template-columns: 1fr;
  }
}
.comment-item .comment-thumb img {
  height: 100%;
  width: 110px;
  object-fit: cover;
  object-position: top;
}
.comment-item .comment-info .author {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.comment-item .comment-info p {
  font-size: 16px;
  margin-bottom: 0;
}
.comment-item .area-bottom {
  display: flex;
  align-items: center;
  margin-top: 10px;
  column-gap: 40px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.comment-item .area-bottom .comments-meta {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.comment-item .area-bottom .comments-meta span {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.comment-item .area-bottom .reply {
  color: var(--rr-color-theme-primary);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.comment-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.blog-contact-form {
  background-color: transparent;
  margin-top: 50px;
}
.blog-contact-form .title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}
.blog-contact-form .request-form .form-item {
  position: relative;
  margin-bottom: 30px;
}
.blog-contact-form .request-form .form-item .form-title {
  font-family: var(--rr-ff-body);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.blog-contact-form .request-form .form-item .form-control {
  background-color: #f6f2ef;
  color: var(--rr-color-text-body);
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
  border: none;
  padding: 17px 20px;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0;
}
.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 18px;
  font-weight: 500;
}
.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 18px;
  font-weight: 500;
}
.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
  font-size: 18px;
  font-weight: 500;
}
.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
  font-size: 18px;
  font-weight: 500;
}

.sidebar-widget {
  border: 1px solid #d6d4d3;
}
.sidebar-widget:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar-widget .widget-title {
  background-color: #f6f2ef;
  font-size: 24px;
  font-weight: 500;
  display: block;
  padding: 16px 30px;
  border-bottom: 1px solid #d6d4d3;
  margin-bottom: 0;
}
.sidebar-widget .sidebar-widget-inner {
  padding: 20px 30px;
}
.sidebar-widget .download-list {
  list-style: none;
}
.sidebar-widget .download-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.sidebar-widget .download-list li button {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d6d4d3;
  width: 100%;
  padding: 10px 20px;
}
.sidebar-widget .download-list li button i {
  color: var(--rr-color-theme-primary);
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form .form-control {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  border: 1px solid #d6d4d3;
  box-shadow: none;
  padding: 14.5px 0;
  padding-left: 25px;
  padding-right: 30px;
  border-radius: 0;
}
.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.sidebar-widget .search-form .form-control:-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.sidebar-widget .search-form .form-control::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.sidebar-widget .search-form .form-control:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.sidebar-widget .search-form .search-btn {
  background-image: linear-gradient(124deg, rgb(154, 132, 120) 0%, rgb(30, 19, 12) 100%);
  color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 45px;
  width: 45px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0;
}
.sidebar-widget .category-list {
  list-style: none;
}
.sidebar-widget .category-list li {
  padding: 15px 30px;
}
.sidebar-widget .category-list li:not(:last-of-type) {
  border-bottom: 1px solid #d6d4d3;
}
.sidebar-widget .category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
}
.sidebar-widget .category-list li a:not(:last-of-type) {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.sidebar-widget .category-list li a i {
  color: var(--rr-color-theme-primary);
  visibility: hidden;
  opacity: 0;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget .category-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.sidebar-widget .category-list li a:hover i {
  color: var(--rr-color-theme-primary);
  visibility: visible;
  margin-right: 0;
  opacity: 1;
}
.sidebar-widget .blog-gallary-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 10px;
}
@media only screen and (max-width: 992px) {
  .sidebar-widget .blog-gallary-wrap {
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb {
  position: relative;
  z-index: 1;
  height: 117px;
  width: 117px;
  border: 3px solid var(--rr-color-heading-primary);
  border-radius: 25px;
  overflow: hidden;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb:before {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb .gallary-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb .gallary-btn a {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-heading-primary);
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-heading-primary);
  border-radius: 50%;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb:hover:before {
  visibility: visible;
  opacity: 1;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb:hover .gallary-btn {
  transform: translate(-50%, -50%) scale(1);
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
  column-gap: 0;
  margin: 0;
  padding: 0;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 10px;
}
.sidebar-widget .tags li a {
  display: inline-block;
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid #d6d4d3;
}
.sidebar-widget .tags li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}
.sidebar-widget .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 70px 1fr;
  grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .sidebar-post img {
  width: 70px;
  height: 100%;
  object-fit: cover;
}
.sidebar-widget .sidebar-post .post-content {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content {
    padding-left: 10px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta {
    column-gap: 5px;
  }
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
  font-family: var(--rr-ff-body);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 13px;
  }
}
.sidebar-widget .sidebar-post .post-content .title {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post .post-content .title {
    font-size: 14px;
  }
}
.sidebar-widget .sidebar-post .post-content .title a {
  background: linear-gradient(var(--rr-color-heading-primary) 0%, var(--rr-color-heading-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--rr-color-heading-primary);
  background-size: 100% 2px;
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
  background-color: var(--rr-color-grey-2);
  position: relative;
  z-index: 1;
  padding-top: 160px;
}
.footer-section .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .footer-top {
    margin-bottom: 50px;
  }
}
.footer-top .footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
.footer-top .footer-social ul li {
  display: inline-flex;
  margin-right: 3px;
}
.footer-top .footer-social ul li a {
  background-color: #362c25;
  color: var(--rr-color-common-white);
  width: 40px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-top .footer-social ul li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.footer-top .footer-social .contact-box {
  background-color: var(--rr-color-theme-primary);
  display: grid;
  align-items: center;
  grid-gap: 10px;
  grid-template-columns: 35px 1fr;
  padding: 8px 25px;
  margin-left: 4px;
}
.footer-top .footer-social .contact-box .icon {
  background-color: #1f140c;
  color: var(--rr-color-common-white);
  height: 35px;
  width: 35px;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-top .footer-social .contact-box .content span {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.footer-top .footer-social .contact-box .content a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.footer-wrap {
  margin-bottom: 80px;
}
@media (max-width: 1170px) {
  .footer-wrap {
    margin-bottom: 0;
  }
}

@media (max-width: 1170px) {
  .footer-widget {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .widget-header {
  margin-bottom: 35px;
}

.footer-widget .widget-header img {
  height: 60px;
}

@media only screen and (max-width: 767px) {
  .footer-widget .widget-header {
    margin-bottom: 25px;
  }
}
.footer-widget .widget-header .widget-title {
  color: var(--rr-color-common-white);
  font-size: 24px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.footer-widget .widget-header .widget-title:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  height: 1px;
  width: 80px;
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}
.footer-widget .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 30px;
  text-transform: uppercase;
}
.footer-widget .title span {
  color: var(--rr-color-text-body);
  display: block;
  margin-top: 10px;
  text-transform: inherit;
  font-weight: 400;
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-list li a {
  font-family: var(--rr-ff-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.footer-widget .footer-list li a:hover {
  color: var(--rr-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-widget p {
  color: #cbc5c5;
}
.footer-widget .footer-form {
  position: relative;
  margin-top: 30px;
}
.footer-widget .footer-form .form-control {
  background-color: #372c26;
  padding: 19px 80px 19px 20px;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border: none;
  border-radius: 0px;
}
.footer-widget .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .submit {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  height: 50px;
  font-size: 13px;
  font-weight: 600;
  padding: 0 20px;
}
.footer-widget .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 10px;
}
.footer-widget .sidebar-post .post-content .post-meta {
  margin-bottom: 0;
}
.footer-widget .sidebar-post .post-content .post-meta li {
  font-family: var(--rr-ff-heading);
  color: #b7b3b4;
  font-size: 14px;
  font-weight: 500;
  text-transform: inherit;
}
.footer-widget .sidebar-post .post-content .title {
  color: var(--rr-color-common-white);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 5px;
  line-height: 1.5;
}
.footer-widget .footer-download-app {
  display: flex;
  align-items: center;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
.footer-widget .footer-download-app .download-app {
  background-color: #362b25;
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  justify-content: center;
  padding: 10px 30px 15px 30px;
}
.footer-widget .footer-download-app .download-app .icon {
  color: var(--rr-color-theme-primary);
  font-size: 32px;
}
.footer-widget .footer-download-app .download-app .content span {
  color: var(--rr-color-theme-primary);
  font-size: 14px;
  font-weight: 400;
}
.footer-widget .footer-download-app .download-app .content .download-title {
  font-size: 18px;
  color: var(--rr-color-common-white);
  margin-bottom: 0;
}
.footer-widget .footer-items .footer-item {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
  border: 1px solid #4b423d;
  padding: 12px;
  margin-bottom: 15px;
}
.footer-widget .footer-items .footer-item .icon {
  color: var(--rr-color-common-white);
  font-size: 18px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4b423d;
}
.footer-widget .footer-items .footer-item .content span {
  color: #8b827d;
  display: block;
  font-size: 16px;
}
.footer-widget .footer-items .footer-item .content a {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  font-size: 18px;
}
.footer-widget.footer-col-2 {
  padding-left: 40px;
}
@media (max-width: 1170px) {
  .footer-widget.footer-col-2 {
    padding-left: 0;
  }
}
.footer-widget.footer-col-2 .footer-list li a {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer-widget.footer-col-2 .footer-list li a {
    font-size: 15px;
  }
}
.footer-widget.footer-col-3 {
  padding-left: 40px;
}
@media (max-width: 1170px) {
  .footer-widget.footer-col-3 {
    padding-left: 0;
  }
}

.copyright-area {
  background-color: #352b25;
}

.copyright-content {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media only screen and (max-width: 992px) {
  .copyright-content {
    justify-content: center;
  }
}
.copyright-content p {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-common-white);
  font-size: 18px;
  margin: 0;
}
.copyright-content p span {
  color: var(--rr-color-theme-primary);
}
.copyright-content .copyright-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .copyright-content .copyright-social {
    justify-content: center;
  }
}
.copyright-content .copyright-social span {
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .copyright-content .copyright-social span {
    margin-right: 0;
  }
}
.copyright-content .copyright-social ul li {
  display: inline-flex;
  color: var(--rr-color-common-white);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.copyright-content .copyright-social ul li:not(:last-of-type) {
  margin-right: 10px;
  padding-right: 10px;
}
.copyright-content .copyright-social ul li:not(:last-of-type):before {
  color: var(--rr-color-common-white);
  content: "-";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

.footer-2 {
  padding-top: 120px;
}
.footer-2 .footer-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.footer-3 .copyright-area {
  background-color: transparent;
  margin-bottom: 40px;
}
.footer-3 .copyright-area .copyright-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 40px;
}
@media only screen and (max-width: 767px) {
  .footer-3 .copyright-area .copyright-content {
    padding: 30px 20px;
  }
}

.bonimg {

  width: 100%;
  height: 200px;
  background: #1e130c;
  padding: 15px 30px;
  display: flex;
  align-items:center;
  justify-content: center;

}

.bonimg img {

  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;

}

.bonimg-2 {

  background: #1e130c;

}

.tc-area p {

  text-align: left;
  margin: 0;
  font-size: .6em;
  line-height: 1.3;

}

.tc-area {

  padding-top: 10px;
  border-top: 1px solid #bbb8b6

}

.tc-area2 {

  padding: 10px 20px 10px;

}

.proma-bg {

  background: #1e130c;

}


.cc-window {

      font-family: var(--rr-ff-p)!important;
      justify-content: center!important;

}

.cc-message {

  flex: none!important;

}

.cc-btn {

  background: #7f4220;
  border-radius: 0 !important;

}

.cc-btn:hover {

  background: #eee!important;
  color: #000!important;

}



.footer-logos {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    grid-gap: 30px;
}



  .footer-logos svg {
      display: block;
      width: auto;
      max-width: 180px;
      height: 40px;
    }


  .footer-logos svg {

    transition: all .5s ease;

  }

  .footer-logos svg path {
        fill: rgba(255,255,255, .5);
        opacity: 1;
        transition: all .5s ease;
    }

    .footer-logos svg:hover {

      transform: scale(1.1);

    }

    .txtarea p {

      margin-bottom: 20px;

    }

    .txtarea ul {

      padding-left: 20px;

    }

    .txtarea ul li{

      margin-bottom: 20px;

    }

/* !END: Theme Footer CSS */

/*# sourceMappingURL=main.css.map */
