

.container {
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container { max-width: 540px; }
}
@media (min-width: 768px) {
    .container { max-width: 720px; }
}
@media (min-width: 992px) {
    .container { max-width: 960px; }
}
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }

@media (min-width: 576px) {
    .col-sm-4 { flex: 0 0 auto; width: 33.33333333%; }
}
@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 auto; width: 50%; }
}
@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

/* ---- animation.css ---- */

/*!
Trimmed from Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden

Reduced to only the animations landing.html actually uses (WOW.js triggers
fadeInLeft / fadeInRight / fadeInUp via data-wow attributes) 
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* ---- landing-spacing.css ---- */

.mb-20{margin-bottom:20px}
.mb-30{margin-bottom:30px}
.mb-60{margin-bottom:60px}
.ml-35{margin-left:35px}
.mt-20{margin-top:20px}
.mt-50{margin-top:50px}
.mt-135{margin-top:135px}
.pb-60{padding-bottom:60px}
.pb-70{padding-bottom:70px}
.pb-120{padding-bottom:120px}
.pb-160{padding-bottom:160px}
.pr-30{padding-right:30px}
.pr-85{padding-right:85px}
.pt-60{padding-top:60px}
.pt-100{padding-top:100px}
.pt-120{padding-top:120px}
.pt-150{padding-top:150px}

/* ---- landing-style.css ---- */

:root {
  /* ---- Core roles ---- */
  --color-anchor: #2e308c;        /* indigo - hero/footer backgrounds, headings, body text */
  --color-anchor-rgb: 46, 48, 140; /* rgb() form of --color-anchor, for use in rgba() overlays */
  --color-accent: #db9325;        /* amber - primary CTAs, highlighted words, markers */
  --color-accent-wash: #fdf3e1;   /* pale amber - soft section backgrounds */

  /* ---- Supporting neutrals ---- */
  --color-bg: #ffffff;            /* dominant background */
  --color-text-muted: #6b6b74;    /* secondary body copy on white */

  /* ---- State variants (darker for hover/active) ---- */
  --color-anchor-hover: #262766;
  --color-accent-hover: #c07f1f;

  /* ---- Flat gradient forms (components expecting a gradient) ---- */
  --anchor-grad: linear-gradient(135deg, #2e308c 0%, #2e308c 100%);
  --amber-grad:  linear-gradient(135deg, #db9325 0%, #db9325 100%);

  /* ---- Section backgrounds - flat gradients ---- */
  --bg-section:      linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  --bg-section-alt:  linear-gradient(135deg, #f7f7fb 0%, #f7f7fb 100%);
  --bg-section-warm: linear-gradient(135deg, #fdf3e1 0%, #fdf3e1 100%);

  /* ---- Footer background - flat gradients ---- */
  --indigo-bg-grad:   linear-gradient(135deg, #242a56 0%, #242a56 100%);
  --indigo-card-grad: linear-gradient(135deg, #2d346c 0%, #2d346c 100%);
  --bg-footer:       var(--indigo-bg-grad);
  --bg-footer-deep:  var(--indigo-card-grad);
}


*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Epilogue", sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: 29px;
  overflow-x: hidden;
  color: var(--color-text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--color-anchor);
}

p {
  margin: 0;
}

a,
button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

*:focus {
  outline: none;
}

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

a:hover {
  text-decoration: none;
  color: var(--color-anchor-hover);
}

button,
input[type=submit] {
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

img.icon-svg {
  width: 1em;
  height: 1em;
  object-fit: contain;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul:last-child {
  margin-bottom: 0;
}

.align-items-center {
  align-items: center;
}

.main-btn {
  padding: 14px 28px;
  font-weight: 500;
  color: #ffffff;
  background: var(--amber-grad);
  border-radius: 6px;
  transition: all linear 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.main-btn:hover {
  background: var(--color-accent-hover);
  color: #ffffff;
}

.section-title {
  text-align: center;
}

.section-title > span {
  border: 1px solid #db932566;
  font-size: 16px;
  font-weight: 500;
  color: #db9325;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 40px;
  line-height: 26px;
  padding: 4px 20px 2px 20px;
  display: inline-block;
}

.section-title .title {
  font-size: 40px;
  line-height: 50px;
  margin-top: 20px;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 26px;
    line-height: 36px;
  }
}

.section-title-4 span {
  background-color: var(--color-anchor);
  color: #ffffff;
  display: inline-block;
  line-height: 32px;
  border-radius: 3px;
  padding: 0 10px;
  font-size: 16px;
  margin-bottom: 20px;
}

.section-title-4 .title {
  font-size: 40px;
  color: #101010;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .section-title-4 .title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-4 .title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-4 .title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title-4 .title {
    font-size: 28px;
  }
}

.rs-header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
}

.rs-header__topbar {
  background: var(--anchor-grad);
  padding: 0 48px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-header__topbar {
    padding: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__topbar {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__topbar {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-header__topbar {
    display: none;
  }
}

.rs-header__info.item-2 {
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__info ul {
    text-align: center;
  }
}

.rs-header__info ul li {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  color: #FFFFFFD1;
  line-height: 46px;
  border-right: 1px solid #FFFFFF1A;
  padding-right: 42px;
  margin-right: 42px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-header__info ul li {
    padding-right: 30px;
    margin-right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__info ul li {
    padding-right: 15px;
    margin-right: 15px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__info ul li {
    padding-right: 15px;
    margin-right: 15px;
  }
}

.rs-header__info ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.rs-header__info ul li a {
  transition: all linear 0.3s;
  display: inline-flex;
  align-items: center;
}

.rs-header__info ul li a:hover {
  color: #ffffff;
}

.rs-header__info ul li:hover .icon {
  -webkit-animation: vibrate 0.4s infinite;
  animation: vibrate 0.4s infinite;
}

.rs-header__social {
  margin-left: 42px;
  padding-left: 27px;
  border-left: 1px solid #FFFFFF1A;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__social {
    margin-left: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__social {
    margin-left: 15px;
    padding-left: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-header__social {
    margin-left: 15px;
    padding-left: 15px;
  }
}

.rs-header__social ul li {
  display: inline-block;
  margin-left: 15px;
}

.rs-header__social ul li:first-child {
  margin-left: 0;
}

.rs-header__social ul li a {
  color: #FFFFFFD1;
}

.rs-header__social ul li a:hover {
  color: #ffffff;
}

.rs-header__social ul li:nth-child(2) a {
  font-size: 15px;
}

.rs-header__top-rightbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__top-rightbar {
    justify-content: center;
  }
}

.rs-header__main-box {
  padding: 0px 48px;
  background: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-header__main-box {
    padding: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__main-box {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__main-box {
    padding: 15px 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-header__main-box {
    padding: 15px 0;
  }
}

.rs-header__main-box.sticky {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

/* Once scrolled, drop the topbar so only the nav stays pinned - same end result
   as the old scroll-away header, but nothing repositions, so it can't lag. */
.rs-header.scrolled .rs-header__topbar {
  display: none;
}

.rs-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rs-header__main .rs-logo-area a img {
  height: 50px;
  width: auto;
}

.rs-header__main .rs-header-rightside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-header__main .rs-header-rightside .rs-header-btn {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__main .rs-header-rightside .rs-header-btn {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__main .rs-header-rightside .rs-header-btn {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .rs-header__main .rs-header-rightside .rs-header-btn {
    display: none;
  }
}

.rs-header__main .rs-header-rightside .rs-header-toggle {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  margin-left: 30px;
  padding: 0;
  transition: right 0.3s ease-in-out 0s;
  width: 33px;
  z-index: 12;
  transition: right 0.3s ease-in-out 0s;
  -webkit-transition: right 0.3s ease-in-out 0s;
  -moz-transition: right 0.3s ease-in-out 0s;
  -o-transition: right 0.3s ease-in-out 0s;
  cursor: pointer;
}

.rs-header__main .rs-header-rightside .rs-header-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  background: var(--amber-grad);
  margin: 3px;
}

.rs-header__main .rs-header-rightside .rs-header-toggle span:nth-child(1) {
  background: var(--anchor-grad);
}

.rs-header__main .rs-header-rightside .rs-header-toggle span:nth-child(3) {
  background: var(--anchor-grad);
}

.rs-header__main .rs-header-rightside .rs-header-toggle span:nth-child(5) {
  background: var(--anchor-grad);
}

.rs-header__main .rs-header-rightside .rs-header-toggle span:nth-child(7) {
  background: var(--anchor-grad);
}

.rs-header__main .rs-header-rightside .rs-header-toggle span:nth-child(9) {
  background: var(--anchor-grad);
}

.rs-header__main .rs-header-rightside .main-menu {
  margin-right: 315px;
}

@media only screen and (max-width: 1900px) {
  .rs-header__main .rs-header-rightside .main-menu {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__main .rs-header-rightside .main-menu {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-header__main .rs-header-rightside .main-menu {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .rs-header__main .rs-header-rightside .main-menu {
    display: none;
  }
}

.rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li {
  display: inline-block;
  margin: 0 0 0 40px;
  padding: 35px 0;
  position: relative;
}

@media only screen and (max-width: 1599px) {
  .rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li {
    margin: 0 0 0 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li {
    margin: 0 0 0 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li {
    margin: 0 0px;
  }
}

.rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li > a {
  color: var(--color-anchor);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
  padding: 0px;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li > a {
    font-size: 14px;
    padding: 0px 10px;
  }
}

.rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li > a:hover,
.rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li > a.active {
  color: var(--color-anchor-hover);
}

.rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li:last-child {
  margin-right: 0 !important;
}

.rs-header__main .rs-header-rightside .main-menu ul.nav-menu > li:hover > a {
  color: var(--color-anchor-hover);
}

.off-canvas-wrap {
  position: fixed;
  width: 380px;
  top: 0;
  min-height: 100vh;
  right: 0;
  transition: all 0.4s;
  z-index: 999;
  margin-right: -450px;
}

@media only screen and (max-width: 575px) {
  .off-canvas-wrap {
    width: 310px;
  }
}

.off-canvas-wrap.show-off-canvas {
  margin-right: 0;
}

.off-canvas-wrap .overly {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 998;
  background-color: #ffffff;
  left: 0;
  top: 0;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  cursor: url(../images/landing/close.png) auto;
}

.off-canvas-wrap .overly.show-overly {
  visibility: visible;
  opacity: 0.9;
}

.off-canvas-wrap .off-canvas-widget {
  padding: 60px 40px;
  background-color: #fff;
  height: 100vh;
  position: relative;
  z-index: 999;
  box-shadow: 2px 0px 20px 0 #00000025;
  overflow-y: scroll;
}

@media only screen and (max-width: 575px) {
  .off-canvas-wrap .off-canvas-widget {
    padding: 60px 20px;
  }
}

.off-canvas-wrap .off-canvas-widget a.off-canvas-close {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 26px;
  color: #ffffff;
  background: var(--amber-grad);
  padding: 4px 6px;
  border-radius: 5px;
}

.off-canvas-wrap .off-canvas-widget .widget {
  margin-bottom: 30px;
}

.off-canvas-wrap .off-canvas-widget .widget:last-child {
  margin-bottom: 0;
}

.off-canvas-wrap .off-canvas-widget .widget.about-widget p {
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .off-canvas-wrap .off-canvas-widget .widget.contact-widget {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .off-canvas-wrap .off-canvas-widget .widget.contact-widget {
    display: none;
  }
}

.off-canvas-wrap .off-canvas-widget .widget.contact-widget ul li {
  font-size: 15px;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.off-canvas-wrap .off-canvas-widget .widget.contact-widget ul li a {
  color: var(--color-text-muted);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .off-canvas-wrap .off-canvas-widget .widget.social-widget {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .off-canvas-wrap .off-canvas-widget .widget.social-widget {
    margin-top: 30px;
  }
}

.off-canvas-wrap .off-canvas-widget .widget.social-widget ul li a {
  height: 40px;
  width: 40px;
  line-height: 38px;
  border: 1px solid rgba(81, 61, 232, 0.1411764706);
  color: var(--color-text-muted);
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  margin-right: 10px;
  transition: all linear 0.3s;
  font-weight: 500;
}

.off-canvas-wrap .off-canvas-widget .widget.social-widget ul li a:hover {
  background: var(--amber-grad);
  color: #ffffff;
  border-color: var(--color-accent);
}

.off-canvas-wrap .off-canvas-widget .widget.social-widget ul li a:nth-child(2) {
  font-size: 15px;
}

.off-canvas-wrap .off-canvas-widget .gallery-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .off-canvas-wrap .off-canvas-widget .gallery-widget {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .off-canvas-wrap .off-canvas-widget .gallery-widget {
    display: none;
  }
}

.off-canvas-wrap .off-canvas-widget .gallery-widget .rs-gallery-item {
  max-width: 85px;
}

.off-canvas-wrap .off-canvas-widget .gallery-widget .rs-gallery-item img {
  display: block;
}

.off-canvas-wrap .off-canvas-widget .about-widget img {
  height: 50px;
  width: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .off-canvas-wrap .off-canvas-widget .about-widget p {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .off-canvas-wrap .off-canvas-widget .about-widget p {
    display: none;
  }
}

@media only screen and (min-width: 1550px) {
  .off-canvas-wrap ul.nav-menu {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .off-canvas-wrap ul.nav-menu {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .off-canvas-wrap ul.nav-menu {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .off-canvas-wrap ul.nav-menu {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .off-canvas-wrap ul.nav-menu {
    display: block;
  }
}

.off-canvas-wrap ul.nav-menu li a {
  color: var(--color-anchor);
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
}

.off-canvas-wrap ul.nav-menu li a:hover {
  color: var(--color-anchor-hover);
}

.off-canvas-wrap ul.nav-menu li:last-child a {
  border-top-width: 1px;
}

.rs-footer {
  background: var(--bg-footer);
}

.rs-footer__about {
  padding-right: 85px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-footer__about {
    padding-right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-footer__about {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer__about {
    padding-right: 0px;
  }
}

.rs-footer__about > a > img {
  height: 50px;
}

.rs-footer__about p {
  color: #FFFFFFDE;
  font-size: 16px;
  margin-top: 33px;
  margin-bottom: 28px;
}

.rs-footer__about ul li {
  display: inline-block;
}

.rs-footer__about ul li a {
  height: 35px;
  width: 35px;
  border: 2px solid #FFFFFF2E;
  color: #FFFFFF63;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  transition: all linear 0.3s;
}

.rs-footer__about ul li a:hover {
  background: var(--amber-grad);
  color: #ffffff;
  border-color: var(--color-accent);
}

.rs-footer__about ul li:nth-child(2) a {
  font-size: 15px;
}

.rs-footer__navigation {
  margin-left: -14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-footer__navigation {
    margin-left: 0;
    margin-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer__navigation {
    margin-left: 0;
    margin-top: 30px;
  }
}

.rs-footer__navigation .title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.rs-footer__navigation ul li a {
  color: #FFFFFFDE;
  font-size: 16px;
  display: block;
  margin: 10px 0;
  transition: all ease 0.3s;
}

.rs-footer__navigation ul li a:hover {
  color: var(--color-accent);
}

.rs-footer__navigation.item-2 {
  margin-left: 28px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-footer__navigation.item-2 {
    margin-left: 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer__navigation.item-2 {
    margin-left: 0;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-footer__contact {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer__contact {
    margin-top: 30px;
  }
}

.rs-footer__contact .title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.rs-footer__contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.rs-footer__contact ul li .rs-icon {
  height: 32px;
  min-width: 32px;
  background: var(--color-accent);
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
}

.rs-footer__contact ul li span {
  color: #FFFFFFDE;
  font-size: 16px;
}

.rs-footer__contact ul li a {
  color: #FFFFFFDE;
  font-size: 16px;
  position: relative;
  transition: all linear 0.3s;
}

.rs-footer__contact ul li a::before {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  height: 2px;
  width: 0%;
  background: var(--amber-grad);
  transition: all linear 0.3s;
}

.rs-footer__contact ul li a:hover {
  color: var(--color-accent);
}

.rs-footer__contact ul li a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.rs-footer__bottom {
  background: var(--bg-footer-deep);
  border-radius: 5px;
  padding: 15px 28px;
  margin-top: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-footer__bottom {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer__bottom {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-footer__copyright-text {
    text-align: left;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer__copyright-text {
    text-align: left;
    margin-bottom: 15px;
  }
}

.rs-footer__copyright-text p {
  color: #FFFFFFDE;
  font-size: 16px;
  margin-bottom: 0;
}

.rs-footer__bottom-link ul {
  float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-footer__bottom-link ul {
    float: none;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .rs-footer__bottom-link ul {
    float: none;
    text-align: left;
  }
}

.rs-footer__bottom-link ul li {
  display: inline-block;
}

.rs-footer__bottom-link ul li a {
  color: #FFFFFFDE;
  font-size: 16px;
  transition: all linear 0.3s;
  padding-left: 50px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-footer__bottom-link ul li a {
    margin-left: 30px;
    padding-left: 30px;
  }
}

.rs-footer__bottom-link ul li a::before {
  position: absolute;
  content: "";
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  width: 5px;
  background: rgba(255, 255, 255, 0.5098039216);
  border-radius: 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-footer__bottom-link ul li a::before {
    left: -4px;
  }
}

.rs-footer__bottom-link ul li a:hover {
  color: var(--color-accent);
}

.rs-footer__bottom-link ul li:first-child a {
  padding-left: 0;
  margin-left: 0;
}

.rs-footer__bottom-link ul li:first-child a::before {
  display: none;
}

#scrollUp {
  text-align: center;
  bottom: 20px;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 20px;
  z-index: 98;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-grad);
  padding: 1px;
  transition: all linear 0.3s;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

#scrollUp .scrollprogress {
  display: block;
}

#scrollUp .scrollprogress .progress-circle {
  transition: stroke-dashoffset 0.5s ease;
}

#scrollUp .arrowup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#scrollUp:hover {
  background: var(--amber-grad);
}

.rs-banner {
  position: relative;
  z-index: 10;
  padding-top: 100px;
  padding-bottom: 100px;
}

.rs-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rs-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgb(7 8 76 / 81%) 0, rgb(67 62 135 / 76%) 40%, rgba(var(--color-anchor-rgb), 0) 80%);
}

.rs-banner .container {
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-banner {
    background-position: top left;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner {
    margin-top: 80px;
    background-position: top left;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .rs-banner__bg img {
    object-position: 85% center;
  }
}

.rs-banner__content .top-heading {
  background: #ffffff;
  border-radius: 50px;
  padding: 12px 18px 9px 18px;
  box-shadow: 7px 5px 36px -1px rgba(49, 44, 44, 0.09);
  display: inline-flex;
  align-items: center;
}

.rs-banner__content .top-heading span {
  display: inline-block;
  padding-left: 9px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 20px;
}

@media only screen and (max-width: 575px) {
  .rs-banner__content .top-heading span {
    font-size: 12px;
  }
}

.rs-banner__content .title {
  font-size: 70px;
  line-height: 80px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 22px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-banner__content .title {
    font-size: 54px;
    line-height: 64px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-banner__content .title {
    font-size: 48px;
    line-height: 58px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-banner__content .title {
    font-size: 48px;
    line-height: 58px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner__content .title {
    font-size: 36px;
    line-height: 48px;
  }
}

.rs-banner__content p {
  padding-right: 150px;
  color: rgba(255, 255, 255, 0.85);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-banner__content p {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-banner__content p {
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-banner__content p {
    padding-right: 0;
  }
}

.rs-banner__content a {
  margin-top: 47px;
  font-weight: 700;
}

.rs-about-service {
  background: var(--bg-footer);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about-service {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.rs-about-service__item {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 40px 0;
}

.rs-about-service__item .rs-icon {
  margin-right: 16px;
  transition: all linear 0.3s;
}

.rs-about-service__item .rs-content .title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 30px;
  margin-bottom: 11px;
}

.rs-about-service__item .rs-content p {
  color: #FFFFFFDB;
}

.rs-about-service__item.item-2 {
  position: relative;
  z-index: 10;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
}

.rs-about-service__item.item-2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--bg-footer-deep);
  z-index: -1;
}

.rs-about-service__item.item-3 {
  margin-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about-service__item.item-3 {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about-service__item.item-3 {
    margin-left: 0;
  }
}

.rs-about-service__item:hover .rs-icon {
  -webkit-animation-name: dance_hover;
  animation-name: dance_hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.rs-about {
  position: relative;
  padding-bottom: 160px;
}

.rs-about__bg-img {
  position: absolute;
  right: 5%;
  top: 5%;
  z-index: -1;
  pointer-events: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about {
    padding-bottom: 100px;
  }
}

.rs-about__thumb {
  position: relative;
  z-index: 10;
}

.rs-about__thumb .rs-thumb-1 {
  position: absolute;
  right: 50px;
  bottom: -120px;
  z-index: 5;
  border-radius: 5px;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {
  .rs-about__thumb .rs-thumb-1 {
    position: static;
    margin-top: 30px;
  }
}

.rs-about__thumb .rs-shape-1 {
  position: absolute;
  left: 75px;
  bottom: -80px;
  z-index: 4;
}

@media only screen and (max-width: 767px) {
  .rs-about__thumb .rs-shape-1 {
    position: static;
    margin-top: 20px;
  }
}

.rs-about__thumb .rs-shape-2 {
  position: absolute;
  left: -60px;
  top: -40px;
  z-index: -1;
  animation: scale 1s alternate infinite;
  -webkit-animation: scale 1s alternate infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.rs-about__content {
  position: relative;
  margin-left: -20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .rs-about__content {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-about__content {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-about__content {
    margin-left: 0;
    padding-top: 180px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-about__content {
    margin-left: 0;
    padding-top: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .rs-about__content {
    padding-top: 30px;
  }
}

.rs-about__content > span {
  border: 1px solid #db932566;
  font-size: 16px;
  font-weight: 500;
  color: #db9325;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 40px;
  line-height: 26px;
  padding: 4px 20px 2px 20px;
  display: inline-block;
}

.rs-about__content .title {
  font-size: 40px;
  line-height: 50px;
  margin-top: 20px;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  .rs-about__content .title {
    font-size: 32px;
    line-height: 42px;
  }
}

.rs-why-choose-about-page .section-title {
  text-align: left;
  padding-right: 70px;
}

@media only screen and (max-width: 1599px) {
  .rs-why-choose-about-page .section-title {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1599px) {
  .rs-why-choose-about-page .section-title .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.rs-why-choose-about-page__thumb {
  text-align: right;
  padding-left: 130px;
  margin-right: -100px;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 1599px) {
  .rs-why-choose-about-page__thumb {
    padding-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-why-choose-about-page__thumb {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-why-choose-about-page__thumb {
    margin-top: 40px;
  }
}

.rs-why-choose-about-page__thumb > img,
.rs-why-choose-about-page__thumb > picture > img {
  width: 100%;
}

.rs-why-choose-about-page__thumb .rs-shape {
  position: absolute;
  left: 0;
  top: 50px;
}

@media only screen and (max-width: 767px) {
  .rs-why-choose-about-page__thumb .rs-shape {
    position: static;
    margin-top: 20px;
  }
}

.rs-why-choose-about-page__item {
  padding: 30px 20px 30px 30px;
  background-color: #ffffff;
  border-radius: 4px 4px 4px 4px;
  box-shadow: -4px 1px 39px 10px rgba(129, 70, 70, 0.06);
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-why-choose-about-page__item {
    padding: 30px 15px 30px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-why-choose-about-page__item {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-why-choose-about-page__item {
    margin-top: 30px;
  }
}

.rs-why-choose-about-page__item span {
  position: absolute;
  right: 30px;
  top: 30px;
  color: #EEF5F5;
  font-size: 44px;
  font-weight: 600;
  line-height: 48px;
}

.rs-why-choose-about-page__item .rs-icon {
  display: inline-block;
  transition: all linear 0.3s;
}

.rs-why-choose-about-page__item .rs-icon img {
  width: 55px;
}

.rs-why-choose-about-page__item .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 22px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1599px) {
  .rs-why-choose-about-page__item .title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-why-choose-about-page__item .title {
    font-size: 18px;
  }
}

.rs-why-choose-about-page__item p {
  font-size: 16px;
}

@media only screen and (max-width: 1599px) {
  .rs-why-choose-about-page__item p {
    font-size: 15px;
    line-height: 22px;
  }
}

.rs-why-choose-about-page__item:hover .rs-icon {
  -webkit-animation: foldAnimation linear 0.3s;
  animation: foldAnimation linear 0.3s;
}

.rs-why-choose-about-page .rs-why-choose-box {
  margin-top: -270px;
  position: relative;
  z-index: 15;
}

@media only screen and (max-width: 1599px) {
  .rs-why-choose-about-page .rs-why-choose-box {
    margin-top: -200px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-why-choose-about-page .rs-why-choose-box {
    margin-top: -110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-why-choose-about-page .rs-why-choose-box {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-why-choose-about-page .rs-why-choose-box {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 1599px) {
  .rs-why-choose-about-page .rs-why-choose-box .row.pr-85 {
    padding-right: 0;
  }
}

.rs-service {
  position: relative;
  overflow: hidden;
  background-color: #2e308c05;
}

.rs-service__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .rs-service__bg-img {
    display: none;
  }
}

.rs-service__item {
  background: #ffffff;
  box-shadow: 0 4px 55px rgba(46, 48, 140, 0.01);
  border-radius: 10px;
  overflow: hidden;
}

.rs-service__item .rs-thumb {
  position: relative;
  overflow: hidden;
  overflow: hidden;
}

.rs-service__item .rs-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: all linear 0.3s;
}

.rs-service__item .rs-content {
  padding: 0 30px 30px 40px;
  position: relative;
  z-index: 1;
  margin-top: -36px;
}

@media only screen and (max-width: 767px) {
  .rs-service__item .rs-content {
    padding: 0 20px 30px 20px;
  }
}

.rs-service__item .rs-content > svg {
  position: absolute;
  top: 2px;
  background-size: cover;
  width: auto;
  left: 0;
  right: 0;
  height: 40px;
  z-index: -1;
}

.rs-service__item .rs-content > svg path {
  fill: #fff;
}

.rs-service__item .rs-content .rs-icon {
  height: 60px;
  width: 60px;
  background: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.rs-service__item .rs-content .rs-icon svg {
  width: 30px;
}

.rs-service__item .rs-content .title {
  font-size: 22px;
  line-height: 30px;
  margin-top: 22px;
  margin-bottom: 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-service__item .rs-content .title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-service__item .rs-content .title {
    font-size: 20px;
  }
}

.rs-service__item .rs-content p {
  font-size: 16px;
  line-height: 1.75;
}

.rs-service__item:hover .rs-thumb img {
  transform: scale(1.05);
}

.rs-service__slider .owl-nav {
  display: none;
}

.accordion {
  width: auto;
  height: 65px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: height 0.3s ease;
  margin-bottom: 24px;
}

.accordion .accordion_tab_2,
.accordion .accordion_tab {
  padding: 9px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: capitalize;
  color: #002559;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 575px) {
  .accordion .accordion_tab_2,
  .accordion .accordion_tab {
    font-size: 15px;
  }
}

.accordion .accordion_tab_2 .accordion_arrow,
.accordion .accordion_tab .accordion_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
}

@media only screen and (max-width: 575px) {
  .accordion .accordion_tab_2 .accordion_arrow,
  .accordion .accordion_tab .accordion_arrow {
    display: none;
  }
}

.accordion .accordion_tab_2.active .accordion_arrow,
.accordion .accordion_tab.active .accordion_arrow {
  color: var(--color-accent);
  transform: translateY(-50%) rotate(180deg);
}

.accordion.active {
  height: 165px;
}

@media only screen and (max-width: 1599px) {
  .accordion.active {
    height: 190px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion.active {
    height: 165px;
  }
}

@media only screen and (max-width: 575px) {
  .accordion.active {
    height: 245px;
  }
}

.accordion .accordion_content {
  padding: 20px;
  border-top: 1px solid #ffffff;
}

.accordion .accordion_content .accordion_item {
  margin-bottom: 20px;
}

.accordion .accordion_content .accordion_item p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 28px;
}

.rs-faq-2__box {
  margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-faq-2__box {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-faq-2__box {
    margin-top: 0;
  }
}

.rs-faq-2__box .accordion .accordion_tab_2,
.rs-faq-2__box .accordion .accordion_tab {
  background: #F7FCFF;
  color: #0C2543;
}

.rs-faq-2__box .accordion .accordion_tab_2 .heading-icon,
.rs-faq-2__box .accordion .accordion_tab .heading-icon {
  display: inline-block;
  color: #008eff;
  font-size: 38px;
  font-weight: 400;
}

.rs-faq-2__box .accordion .accordion_tab_2 .accordion_arrow,
.rs-faq-2__box .accordion .accordion_tab .accordion_arrow {
  color: #0C2543;
}

.rs-faq-2__box .accordion .accordion_content {
  background: #F7FCFF;
}

.rs-faq-2__box .accordion.active {
  height: 195px;
}

.rs-faq-2__box .accordion.active .accordion_tab .accordion_arrow {
  color: #008eff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-testimonial-4 .section-title-4 {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-4 .section-title-4 {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-testimonial-4 .section-text {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-testimonial-4 .section-text {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-4 .section-text {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

.rs-testimonial-4__box {
  position: relative;
  z-index: 10;
}

.rs-testimonial-4__img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 80%;
  z-index: -1;
  overflow: hidden;
}

.rs-testimonial-4__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-testimonial-4__img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 30%);
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-4__img-wrap {
    display: none;
  }
}

.rs-testimonial-4__box .rs-service__slider {
  width: auto;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
  padding: 50px 55px 45px 45px;
  background: #ffffff;
  margin: 75px 80px 75px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-testimonial-4__box .rs-service__slider {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-testimonial-4__box .rs-service__slider {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-4__box .rs-service__slider {
    margin-right: 0;
    margin: 0px 0px 0px 0;
  }
}

@media only screen and (max-width: 575px) {
  .rs-testimonial-4__box .rs-service__slider {
    padding: 20px;
  }
}

.rs-testimonial-4__slider .rs-icon {
  width: 45px;
  margin-bottom: 25px;
}

.rs-testimonial-4__slider .rs-icon .icon-svg {
  width: 45px;
  height: 32px;
  color: var(--color-accent);
}

.rs-testimonial-4__slider p {
  font-size: 20px;
  line-height: 1.75;
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-4__slider p {
    font-size: 17px;
  }
}

.rs-testimonial-4__slider .rs-author {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

@media only screen and (max-width: 575px) {
  .rs-testimonial-4__slider .rs-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.rs-testimonial-4__slider .rs-author .rs-thumb {
  max-width: 65px;
  margin-right: 24px;
  border-radius: 50%;
  overflow: hidden;
}

.rs-testimonial-4__slider .rs-author .rs-content .title {
  font-size: 20px;
  color: #202020;
  margin-bottom: 7px;
}

.rs-testimonial-4__slider .rs-author .rs-content span {
  color: var(--color-text-muted);
}

.rs-testimonial-4 .rs-service__slider .owl-nav {
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-testimonial-4 .rs-service__slider .owl-nav {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .rs-testimonial-4 .rs-service__slider .owl-nav {
    display: none;
  }
}

.rs-testimonial-4 .rs-service__slider .owl-nav .owl-prev,
.rs-testimonial-4 .rs-service__slider .owl-nav .owl-next {
  height: 45px;
  width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--amber-grad);
  border: 1px solid #ffffff;
  transition: all ease 0.3s;
  border-radius: 4px;
}

.rs-testimonial-4 .rs-service__slider .owl-nav .owl-prev {
  position: absolute;
  right: -65px;
  bottom: 0;
}

.rs-testimonial-4 .rs-service__slider .owl-nav .owl-next {
  position: absolute;
  right: -65px;
  bottom: 50px;
}

@keyframes vibrate {
  0% {
    transform: translateX(-2px) rotate(0);
  }

  25% {
    transform: translateX(2px) rotate(-2deg);
  }

  50% {
    transform: translateX(-2px) rotate(2deg);
  }

  75% {
    transform: translateX(2px) rotate(-2deg);
  }

  100% {
    transform: translateX(-2px) rotate(0);
  }
}

@-webkit-keyframes vibrate {
  0% {
    transform: translateX(-2px) rotate(0);
  }

  25% {
    transform: translateX(2px) rotate(-2deg);
  }

  50% {
    transform: translateX(-2px) rotate(2deg);
  }

  75% {
    transform: translateX(2px) rotate(-2deg);
  }

  100% {
    transform: translateX(-2px) rotate(0);
  }
}

@-webkit-keyframes dance_hover {
  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 dance_hover {
  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 scale {
  from {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }

  to {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

@-webkit-keyframes scale {
  from {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }

  to {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

@-webkit-keyframes foldAnimation {
  0% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(90deg);
  }

  100% {
    transform: rotateY(0);
  }
}

@keyframes foldAnimation {
  0% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(90deg);
  }

  100% {
    transform: rotateY(0);
  }
}