/* @import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Prata:wght@200..900&display=swap"); */
:root {
  --rr-ff-body: 'DM Sans', sans-serif;
  --rr-ff-heading: 'Prata', 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: 60px;
  --rr-fs-h2: 48px;
  --rr-fs-h3: 20px;
  --rr-fs-h4: 18px;
  --rr-fs-h5: 16px;
  --rr-fs-h6: 14px;
  --rr-color-common-white: #ffffff;
  --rr-color-common-black: #000000;
  --rr-color-common-dark: #232323;
  --rr-color-heading-primary: #171717;
  --rr-color-text-body: #2C3135;
  --rr-color-theme-primary: #b5917d;
  --rr-color-theme-secondary: #132936;
  --rr-color-bg-1: #11151C;
  --rr-color-grey-1: #F4F4F2;
  --rr-color-border-1: #171717;
  --rr-color-border-light: #E4E4E4;
}

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

/**
Typography CSS
*/
body {
  background-color: #f1f1f1;
  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 {
  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);
}

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

a:focus {
  text-decoration: none;
  outline: none;
}

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

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

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

button:hover {
  cursor: pointer;
}

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

input {
  outline: none;
}

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

/**
Common Classes CSS
*/

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

.container {
  max-width: 1430px;
}

.section-heading {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 50px;
  }
}
.section-heading .section-title {
  font-size: 36px;
  line-height: 50px;
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  text-transform: initial;
  position: relative;
  color: var(--rr-color-theme-secondary);
}
@media (max-width: 1170px) {
  .section-heading .section-title {
    font-size: 32px;
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 28px;
    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 {
  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;
  }
}

.white-content h2,
.white-content h3,
.white-content p,
.white-content span {
  color: var(--rr-color-common-white);
}

/* Site Preloader */

/*  Custom Cursor */
@media (min-width: 992px) {
  .d-lg-none{
    display: none !important;
  }
  .testi-item .content{
    height: 228px;
  }
}
/*-- Margin Top --*/

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

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

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

/*-- Margin Bottom --*/

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

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

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

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

/*-- Margin Left --*/

/*-- Margin Right --*/

/*-- Padding Top --*/

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

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

/*-- Padding Bottom --*/

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

/*-- Padding Left --*/

/*-- Padding Right --*/

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

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

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

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

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

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

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

/* Scroll To Top */
@-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);
  }
}

/** Buttons CSS */
.rr-primary-btn {
  background-color: var(--rr-color-theme-primary);
  font-family: var(--rr-ff-body);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 100px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  /* border: 2px solid var(--rr-color-theme-primary); */
}
.rr-primary-btn:after, .rr-primary-btn:before {
  background-color: var(--rr-color-theme-secondary);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
}
.rr-primary-btn:before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}
.rr-primary-btn:hover {
  color: var(--rr-color-common-white);
}
.rr-primary-btn:hover:before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}
.rr-primary-btn:hover:after {
  transform: skew(45deg) translate(-50%, -50%);
}
.rr-primary-btn i {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  transform: rotate(-45deg);
}
.rr-primary-btn:focus {
  color: var(--rr-color-heading-primary);
}

.rr-white-btn {
  background-color: var(--rr-color-theme-primary);
  font-family: var(--rr-ff-body);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 100px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  border: 2px solid var(--rr-color-theme-primary);
}
.rr-white-btn:after, .rr-white-btn:before {
  background-color: var(--rr-color-common-white);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
}
.rr-white-btn:before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}
.rr-white-btn:hover {
  color: var(--rr-color-heading-primary);
  border: 2px solid var(--rr-color-common-white);
}
.rr-white-btn:hover:before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}
.rr-white-btn:hover:after {
  transform: skew(45deg) translate(-50%, -50%);
}
.rr-white-btn i {
  margin-left: 10px;
  font-size: 16px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.rr-white-btn:focus {
  color: var(--rr-color-heading-primary);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  background-color: var(--rr-color-common-white);
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .header {
    position: absolute;
    top: 0;
    height: auto !important;
  }
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* position: absolute; */
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 20px 0;
  }
}
.header .primary-header-inner .header-logo img {
  width: 200px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-logo img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
.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-2 {
  background-color: transparent;
  top: 20px;
  padding: 0 60px;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 1170px) {
  .header-2 {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 992px) {
  .header-2 {
    top: 0;
    padding: 0;
  }
}
.header-2 .primary-header-inner {
  /* background-color: var(--rr-color-common-white); */
  padding: 0 30px;
  border-radius: 0 0 20px 20px;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header-inner {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header-2 .primary-header-inner {
    border-radius: 0;
    /* padding: 30px 20px; */
  }
}
.header-2 .primary-header-inner .header-right-wrap .header-right .header-number {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-common-white);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 40px;
  line-height: 1;
}
@media (max-width: 1170px) {
  .header-2 .primary-header-inner .header-right-wrap .header-right .header-number {
    margin-right: 20px;
  }
}
/* @media only screen and (max-width: 767px) {
  .header-2 .primary-header-inner .header-right-wrap .header-right .header-number {
    display: none;
  }
} */

.primary-header {
  width: 100%;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/

/* Text Animation */

/* Fade Effect */
/* Move From Effect */
/* Blur Effect */
/* Zoom Effect */
/* Flip Effect */
/* Roll Effect */
/* Rotate Skate Effect */
/* PopUp Effect */
/* Kenburns Top */
/* !END: Theme Slider CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/

.hero-section-2 {
  background-color: #000;
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .hero-content-2 {
  padding: 100px 0 100px 0;
} */
@media only screen and (max-width: 992px) {
  .hero-content-2 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-2 {
    padding-top: 60px;
    padding-bottom: 0 !important;
  }
  .header-right i{
    font-size: 30px !important;
  }
  .header-right img{
    width: 30px !important;
  }
}
.hero-content-2 .title {
  color: var(--rr-color-common-white);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .hero-content-2 .title {
    font-size: 28px;
  }
}
.hero-content-2 p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  max-width: 600px;
}
@media only screen and (max-width: 767px) {
  .hero-content-2 p {
    font-size: 18px;
  }
}
.hero-content-2 .hero-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
}
.hero-content-2 .hero-btn:after, .hero-content-2 .hero-btn:before {
  background-color: var(--rr-color-theme-primary);
}
.hero-content-2 .hero-btn:hover {
  color: #fff;
}

/* !END: Hero CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/

@media only screen and (max-width: 992px) {
  .about-content-5 {
    margin-bottom: 40px;
  }
}
.about-content-5 .desc {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .about-content-5 .desc {
    font-size: 16px;
  }
}
.about-content-5 .about-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr;
  grid-gap: 5px;
}
.about-content-5 .about-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.about-content-5 .about-list li .number {
  background-color: var(--rr-color-theme-secondary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
}
.about-content-5 .about-list li p {
  font-size: 18px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .about-content-5 .about-list li p {
    font-size: 16px;
  }
}
/* !END: About CSS */
/**----------------------------------------
START: Service CSS
----------------------------------------*/

.service-wrap {
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 84.79%, rgba(197, 255, 74, 0.2) 100%), #171717; */
  /* background: linear-gradient(180deg, rgba(19, 41, 54, 0) 84.79%, rgba(181, 145, 125, 0.2) 100%), #171717; */
  background-color: var(--rr-color-theme-secondary);
  backdrop-filter: blur(145px);
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 30px;
  overflow: hidden;
}

.service-item {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 30.5%, #b5917d 145%);
  filter: drop-shadow(0px 4px 48px rgba(0, 0, 0, 0.25));
  border-radius: 30px;
  padding: 40px 50px;
  border: 1px solid rgba(64, 64, 64, 0.6);
}
@media (max-width: 1170px) {
  .service-item {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .service-item {
    padding: 40px 20px;
  }
}
.service-item .icon {
  background-color: var(--rr-color-theme-primary);
  height: 85px;
  width: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.service-item .icon img{
  width: 50px;
}
.service-item .content .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .service-item .content .title {
    font-size: 20px;
  }
}
.service-item .content .service-btn {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-common-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.service-item .content .service-btn i {
  padding-left: 5px;
}
.service-item .content .service-btn:before {
  background-color: var(--rr-color-common-white);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
  -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 .content .service-btn:hover {
  color: var(--rr-color-theme-primary);
}
.service-item .content .service-btn:hover:before {
  background-color: var(--rr-color-theme-primary);
}
.service-item:hover .icon img {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.service-wrap.wrap-3 {
  border-radius: 60px;
}
@media only screen and (max-width: 767px) {
  .service-wrap.wrap-3 {
    border-radius: 0;
  }
}
.service-wrap.wrap-3 .service-item {
  /* background: rgba(26, 26, 26, 0.2);
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(30px); */
  border-radius: 30px;
}

/* @media only screen and (min-width: 1199px) {
  .service-wrap.wrap-3 .service-item{
    height: 344px;
  }
} */

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

/* !END: Service CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/

/* !END: Team CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/

/* !END: Page Header CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/

/* !END: Page Header CSS */
/**----------------------------------------
START: Cta CSS
----------------------------------------*/

.cta-section-2 {
  background-color: #132936;
  position: relative;
  z-index: 1;
}
.cta-section-2 .bg-shape {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* !END: Cta CSS */
/**----------------------------------------
START: Process CSS
----------------------------------------*/

/* !END: Process CSS */
/**----------------------------------------
START: Appointment CSS
----------------------------------------*/
.appointment-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.appointment-content .section-heading .section-title {
  font-size: 36px;
  font-weight: 600;
}
.appointment-contact{
  margin-bottom: 25px;
}
.appointment-contact li {
  display: grid;
  align-items: center;
  grid-template-columns: 35px 1fr;
  grid-gap: 15px;
}
.appointment-contact li {
  margin-bottom: 15px;
}
.appointment-contact li .icon {
  background-color: var(--rr-color-theme-primary);
  color: #fff;
  font-size: 18px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.appointment-contact li .content h4 {
  font-size: 16px; 
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--rr-ff-p);
}

.appointment-form {
  background-color: var(--rr-color-common-white);
  max-width: 590px;
  width: 100%;
  padding: 25px;
  border-radius: 12px;
  overflow-x: hidden;
}
.appointment-form #phone_number{
  padding-left: 50px;
}

@media only screen and (max-width: 992px) {
  .appointment-form {
    margin: 0 auto;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .appointment-form {
    padding: 40px 20px;
  }
}
.appointment-form .form-item .form-control {
  box-shadow: none;
  padding: 12px 20px;
  border-radius: 15px;
  border: 1px solid #E4E6EA;
  margin-bottom: 15px;
}

select {
  appearance: auto !important;
}

.appointment-form .submit-btn .rr-primary-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}

.appointment-form .submit-btn .rr-primary-btn:focus{
  color: #fff;
}

.appointment-content.content-2 .section-heading .section-title {
  font-size: 36px;
  font-weight: 500;
}
@media only screen and (max-width: 992px) {
  .appointment-content.content-2 .section-heading .section-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .appointment-content.content-2 .section-heading .section-title {
    font-size: 26px;
  }
}

.appointment-items {
  display: grid;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
}
.appointment-items .appointment-item {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .appointment-items .appointment-item {
    grid-template-columns: 1fr;
  }
}
.appointment-items .appointment-item .icon {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 26px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 2px solid var(--rr-color-heading-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment-items .appointment-item .content span {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}
.appointment-items .appointment-item .content .title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  font-family: var(--rr-ff-p);
}
.appointment-items .appointment-item .content .title a {
  position: relative;
}
.appointment-items .appointment-item .content .title a:before {
  background-color: var(--rr-color-heading-primary);
  content: "";
  width: 0;
  height: 2px;
  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;
}
.appointment-items .appointment-item .content .title a:hover {
  color: var(--rr-color-heading-primary);
}
.appointment-items .appointment-item .content .title a:hover:before {
  width: 100%;
}
.appointment-items .appointment-item:nth-child(1) .icon i {
  transform: rotate(-45deg);
}

.appointment-form.form-2 {
  border: 3px solid var(--rr-color-heading-primary);
  margin-left: auto;
  /* margin-bottom: -80px; */
}
@media (max-width: 1170px) {
  .appointment-form.form-2 {
    margin-bottom: 140px;
  }
}
@media only screen and (max-width: 992px) {
  .appointment-form.form-2 {
    margin-bottom: 0;
  }
}
/* @media only screen and (max-width: 767px) {
  .appointment-form.form-2 {
    margin-bottom: 50px;
  }
} */

.appointment-3 {
  background-color: var(--rr-color-theme-secondary);
  overflow-x: clip;
}

.appointment-items.items-2 .appointment-item .content span {
  color: var(--rr-color-common-white);
}
.appointment-items.items-2 .appointment-item .content .title a {
  color: var(--rr-color-common-white);
  font-family: var(--rr-ff-p);
  font-weight: 400;
}
.appointment-items.items-2 .appointment-item .content .title a:hover {
  color: var(--rr-color-theme-primary);
}

/* !END: Appointment CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/

/* !END: Page Header CSS */
/**----------------------------------------
START: Feature CSS
----------------------------------------*/

/* !END: Feature CSS */
/**----------------------------------------
START: Skill CSS
----------------------------------------*/

/* !END: Skill CSS */
/**----------------------------------------
START: Sponsor CSS
----------------------------------------*/
.sponsor-section {
  background-color: var(--rr-color-heading-primary);
  padding: 100px 0;
}
@media only screen and (max-width: 992px) {
  .sponsor-section {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 767px) {
  .sponsor-section {
    padding: 60px 0;
  }
}

.sponsor-2 {
  background-color: transparent;
  padding: 0;
}

.sponsor-wrapper {
  /* background-color: var(--rr-color-heading-primary); */
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 60px;
  padding: 60px 0;
}

.sponsor-wrapper img{
  /* width: 800px; */
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 992px) {
  .sponsor-wrapper {
    padding: 70px 0;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .sponsor-wrapper {
    padding: 60px 0;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* !END: Sponsor CSS */
/**----------------------------------------
START: Faq CSS
----------------------------------------*/

/* !END: Faq CSS */
/**----------------------------------------
START: Testi CSS
----------------------------------------*/
.testi-item {
  background-color: var(--rr-color-common-white);
  padding: 35px;
  border: 2px solid var(--rr-color-heading-primary);
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .testi-item {
    padding: 30px 20px;
  }
}
.testi-item .testi-thumb {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  margin-bottom: 35px;
}
.testi-item .testi-thumb img {
  filter: saturate(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 .content {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D2D2D2;
}
.testi-item .content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .testi-item .content .title {
    font-size: 20px;
  }
}
.testi-item .content p {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .testi-item .content p {
    font-size: 15px;
  }
}
.testi-item .testi-author-info {
  display: flex;
  align-items: center;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.testi-item .testi-author-info .review {
  background-color: var(--rr-color-grey-1);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  list-style: none;
  border-radius: 100px;
  border: 1px solid var(--rr-color-heading-primary);
}
.testi-item .testi-author-info .review li {
  color: #FFB422;
  font-size: 12px;
}
.testi-item .testi-author-info .review li:not(:last-of-type) {
  margin-right: 5px;
}
.testi-item .testi-author-info .name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
}
.testi-item .testi-author-info .name span {
  font-family: var(--rr-ff-body);
  font-size: 14px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
  text-transform: capitalize;
}
.testi-item:hover .testi-thumb img {
  filter: saturate(1);
}

.testimonial-carousel .swiper-pagination{
  position: relative !important;
  margin-top: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--rr-color-theme-secondary);
}

.swiper-pagination-bullet{
  width: 10px !important;
  height: 10px !important;
}

/* !END: Testi CSS */
/**----------------------------------------
START: Counter CSS
----------------------------------------*/

/* !END: Counter CSS */
/**----------------------------------------
START: Content CSS
----------------------------------------*/

/* !END: Content CSS */
/**----------------------------------------
START: Gallary CSS
----------------------------------------*/
.gallary-carousel {
  padding-bottom: 40px;
}
.gallary-carousel .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.gallary-carousel .swiper-pagination.swiper-pagination-progressbar {
  background-color: #E8E8E8;
  border-radius: 100px;
  opacity: 1;
}
.gallary-carousel .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--rr-color-heading-primary);
  border-radius: 100px;
}

.gallary-container {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .gallary-container {
    padding: 0 15px;
  }
}

.gallary-item {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
  border: 3px solid var(--rr-color-heading-primary);
}
.gallary-item .overlay {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 20.71%, rgba(23, 23, 23, 0.7) 72.39%, rgba(23, 23, 23, 0.9) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  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;
}
.gallary-item .gallary-btn {
  position: absolute;
  top: 45%;
  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: 3;
}
.gallary-item .gallary-btn a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 26px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.gallary-item .gallary-img {
  height: 450px;
}
.gallary-item .gallary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallary-item .gallary-content {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 30px;
  z-index: 5;
  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;
}
.gallary-item .gallary-content .title {
  color: var(--rr-color-common-white);
}
.gallary-item .gallary-content p {
  color: var(--rr-color-common-white);
  margin-bottom: 0;
}
@media (max-width: 1170px) {
  .gallary-item .gallary-content p br {
    display: none;
  }
}
.gallary-item:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.gallary-item:hover .gallary-btn {
  transform: translate(-50%, -50%) scale(1);
}
.gallary-item:hover .gallary-content {
  bottom: 30px;
  visibility: visible;
  opacity: 1;
}

/* !END: Gallary CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/

/* !END: Page Header CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/

/* !END: Page Header CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Page Header CSS
----------------------------------------*/

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Error CSS
----------------------------------------*/

/* !END: Error CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/

/*Scrollbar Style*/

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
  background-color: var(--rr-color-theme-secondary);
  position: relative;
  z-index: 1;
}

.copyright-content {
  border-top: 1px solid #353535;
  padding: 15px 0;
}
.copyright-content p {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-common-white);
  font-size: 16px;
  margin: 0;
}
/* .copyright-content.content-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
} */
@media only screen and (max-width: 767px) {
  .copyright-content.content-2 {
    justify-content: center;
  }
}

/* !END: Theme Footer CSS */
/* Common Colors */

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

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-section-2 {
    min-height: 100vh !important;
  }  
}

@media (max-width: 768px) {
.hero-content-2 .title{
  margin-top: 80px;
}
}

.hero-section-2 {
  /* position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  overflow: hidden; */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 100%;
  overflow: hidden;
  padding-bottom: 50px;
}

.hero-content-2 {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
}

.fs-20{
  font-size: 20px;
}


.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 50px;
  margin-bottom: 10px;
  text-align: center;
  padding: 5px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}

.call-us .icons i{
  font-size: 32px;
  color: var(--rr-color-theme-secondary);
  transform: rotate(-45deg);
  margin-right: 10px;
}


.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0 0 0 / .4)
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  background-color: #f4f4f4;
  padding: 25px;
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width:1200px) {
  .popup-content {
    width: 40%;
  }
}

@media(max-width:547px) {
  .popup-content {
    width: 95%;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #191919;
  z-index: 9;
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: -15px;
  right: 0px;
}
.close:hover{
  color: #000;
}

.header-right img{
  width: 18px;
  margin-right: 5px;
}

.header-right i{
  font-size: 22px;
  margin-right: 5px;
  transform: rotate(-45deg);
}

.header-right a:hover{
  color: var(--rr-color-theme-primary) !important;
}
.map iframe{
  width: 100%;
  height: 250px;
}

@media (max-width: 575px) {
  .xs-mb-0{
    margin-bottom: 0 !important;
  }
  .rr-primary-btn{
    padding: 12px 20px !important;
  }
  .rr-white-btn{
    padding: 12px 15px !important;
  }
}

@media only screen and (max-width: 768px) {
  .section-heading {
      margin-bottom: 20px !important;
  }
}

@media only screen and (max-width: 575px) {
  .section-heading .section-title {
      font-size: 24px !important;
      line-height: 34px !important;
  }
}
.about-video video{
  border-radius: 30px;
}

.hero-section-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, #f5f5f5 0%, #fff0 100%); */
  background-color: #000;
  opacity: .1;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .row-cols-md-3>* {
      flex: 0 0 auto;
      width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .row-cols-lg-5>* {
      flex: 0 0 auto;
      width: 20%;
  }
}
.w-35{
  width: 35px;
}

.service-item .icon img{
  width: 50px;
}

.iti__selected-flag {
  background-color: #f4f4f4 !important;
}
#phoneError{
  color: red !important;
  font-size: 13px;
}

.alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin: 16px 0;
}
.alert-error {
  background: #FFF0F0;
  color: #D8000C;
  border-left: 4px solid #D8000C;
}