:root {
  --color-body: #9da1a5;
  --color-body-2: #bcc0c4;
  --color-orange: #e78a3f;
  --color-dark: #141414;
  --bg-orange: radial-gradient(ellipse at 30% 30%, #b52538, #e88c3f);
  --bg-orange2: radial-gradient(ellipse at 45% 40%, #b52538, #e88c3f);
  --bg-orange3: radial-gradient(ellipse at 30% 30%, #e88c3f, #b52538);
}

html.menu-opened,
html.menu-opened body {
  overflow: hidden !important;
}

.rts-dark body {
  background: #0e0e0e;
}

.unit-underline-01 {
  position: relative;
}
.unit-underline-01::before {
  position: absolute;
  content: '';
  top: calc(100% - 8px);
  left: -6px;
  width: calc(100% - 12px);
  height: 35px;
  background: var(--bg-orange);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-image: url('/assets/images/unit/underline-01.webp');
  transition: 0.3s;
  transform: scale(1);
}
.unit-underline-01::after {
  content: none !important;
}
.unit-underline-01:hover:before {
  transform: scaleX(0.95);
}

.text-linear-orange {
  background: var(--bg-orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.text-title-linear-orange {
  position: relative;
  margin-bottom: 30px;
}
.text-title-linear-orange::after {
  content: '';
  position: absolute;
  display: block;
  height: 3px;
  width: 65px;
  background: var(--bg-orange);
  top: calc(100% + 10px);
  left: 0;
  transition: 0.5s;
  border-radius: 1px;
}
.text-title-linear-orange.after-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.text-title-linear-orange.after-full-width::after {
  width: 100%;
}
.text-title-linear-orange.after-right::after {
  right: 0;
}

/* Text Replace */
.text-replace {
  font-weight: 700;
  background: var(--bg-orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: background 0.5s ease;
}
a.text-replace {
  padding-right: 5px;
  position: relative;
  font-size: 1.05em;
  text-decoration: unset;
}
a.text-replace:hover {
  background: var(--bg-orange2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
a.text-replace::after {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 0;
  background: var(--bg-orange2);
  top: calc(100% - 3px);
  left: 0;
  transition: 0.5s;
  border-radius: 1px;
}
a.text-replace:hover::after {
  width: calc(100% - 5px);
}
a.text-replace.text-replace-small::after {
  top: calc(100% - 1px);
  height: 2px;
}
a.text-replace.text-replace-small:hover::after {
  width: 100%;
}
a.text-replace.text-replace-small {
  padding-right: 0;
}
/* End Text Replace */

/* Form Base */
.FormBase-wrap {
  position: relative;
  margin: -15px;
  padding: 15px;
}
.FormBase-wrap::before {
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.FormBase-wrap.FormBase-loading::before {
  visibility: visible;
  opacity: 1;
}
.FormBase-root {
  position: relative;
}
.FormBase-root.FormBase-errored .FormBase-help-text {
  opacity: 1;
}
.FormBase-root .FormBase-help-text {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  font-size: 1.2rem;
  color: #b52538;
  transition: 0.3s;
}
.FormBase-root.FormBase-checkbox.FormBase-errored label::before {
  background-color: #b52538b4;
  border: 1px solid #b52538;
}
.FormBase-root.FormBase-checkbox label a {
  color: #0d6efd;
  font-weight: 500;
  font-size: 1.1em;
  margin: 0 6px;
}
.FormBase-root.FormBase-checkbox label a:hover {
  text-decoration: underline;
}
/* End Form Base */

/* Logo */
.logo img {
  width: 160px;
}
.section-header .logo img {
  margin: -6px 0 -20px;
}
/* End Logo */

/* Section Header */
.section-header {
  font-family: var(--font-oswald);
  height: var(--height-header, 114px);
}
.section-header.header--sticky.sticky,
.header--sticky {
  transition: 0.8s !important;
}
.section-header.header--sticky.sticky {
  background: #1b1b1b;
}
.section-header .header-wrapper .logo {
  margin-top: -4px;
  margin-left: -4px;
}
.section-header:not(.sticky) .header-wrapper .logo {
  margin-top: -2px;
}
.section-header:not(.sticky) .header-right {
  margin-top: 2px;
}
.header-area.header-one .header-wrapper .header-right .nav-area {
  padding-top: 2px;
  margin-right: 60px;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul .header-nav-item > a {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.section-header .header-nav-item .icon-container {
  font-size: 24px;
  position: static;
  z-index: -1;
  margin-right: -24px;
  transition: all 0.35s ease;
}
.section-header .header-nav-item:hover .icon-container {
  transform: rotate(-10deg);
}
.section-header .header-nav-item.line-horizontal {
  margin-right: 40px !important;
}
.section-header .header-nav-item.line-horizontal::before {
  content: '';
  position: absolute;
  right: -30px;
  height: 24px;
  background: #74787c;
  top: 50%;
  width: 2px;
  transform: translateY(-50%);
}
.section-header .search-icon-header {
  padding-right: 0;
}
.section-header .search-icon-header::after {
  display: none;
}
.section-header .action-area {
  margin-right: 2px;
  gap: 12px !important;
}
/* .section-header:not(.header--sticky) .action-area {
  margin-top: 1px;
} */
.section-header .action-menu {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .section-header .action-menu .burger {
    margin: 0;
  }
  .section-header .action-area {
    align-items: flex-end;
    gap: 8px !important;
  }
}
.section-header .header-nav-item .rolling-text.icon-left {
  padding-left: 30px;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul .header-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul .header-nav-item::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--bg-orange2);
  transition: 0.35s;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul .header-nav-item.active::after {
  width: 16px;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul .header-nav-item:hover::after {
  width: 100%;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul .header-nav-item .icon-down {
  color: #fff;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu {
  top: calc(100% + 12px);
  left: 0;
}
.nav-area .navbar-nav-1 .menu-item.unit-underline-01 .sub-menu::after {
  left: 98px;
}
.section-header a.header-nav-link {
  position: static;
  z-index: 1;
}
.section-header .rolling-text {
  line-height: 34px;
  height: 34px;
  text-transform: none;
}
.section-header .rolling-text.icon {
  padding-right: 30px;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu li.menu-item .menu-link::before {
  background: var(--bg-orange);
  height: 2px;
}
/* End Section Header */

/* Section Menu */
.section-menu .navbar-nav-button {
  padding: 0 20px;
}
.section-menu .menu-logo {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.menu-social-area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rts-fs-menu ul.navbar-nav-button li.menu-item {
  justify-content: center;
}
.section-menu .rts-fs-container.row {
  padding: 0;
}
@media (max-width: 768px) {
  .menu-social-area {
    flex-direction: column;
    gap: 20px;
    ul {
      padding: 0;
    }
  }
  .section-menu .menu-logo {
    padding: 130px 0 10px;
  }
}
.menu-social-area h6 {
  margin: 0;
}
.menu-social-area ul {
  display: flex;
  gap: 20px;
  margin: 0;
}
.menu-social-area ul li {
  margin: 0;
  padding: 0;
}
.menu-social-area ul li a {
  font-size: 2.3rem;
  transition: 0.3s;
}
.menu-social-area ul li a:hover {
  color: var(--color-info);
}
.menu-media-sp-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-media-sp-area .media-sp-list {
  display: flex;
  align-items: center;
  gap: 50px;
}
.menu-media-sp-area .media-sp-list:hover .icon-container {
  background-color: var(--color-body);
}
.menu-media-sp-area .media-sp-list:hover .txt {
  color: var(--color-body);
}
.menu-media-sp-area .media-sp-item {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: unset;
}
.menu-media-sp-area .media-sp-item .txt {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
}
.menu-media-sp-area .media-sp-item .icon-container {
  font-size: 36px;
  transition: 0.3s;
}
.menu-media-sp-area .media-sp-list .media-sp-item:hover .icon-container {
  background-color: #fff;
  transform: rotate(-10deg);
}
.menu-media-sp-area .media-sp-list .media-sp-item:hover .txt {
  color: #fff;
}
@media (max-width: 768px) {
  .menu-area .rts-fs-menu .rts-fs-container {
    padding-top: 150px;
  }
  .section-menu .rts-fs-menu .rts-fs-container {
    margin: 0;
  }
}
.section-menu .menu-area {
  overflow: scroll;
}
.section-menu .menu-area::-webkit-scrollbar {
  width: 6px;
  height: 0;
}
.section-menu .menu-area::-webkit-scrollbar-track,
.section-menu .menu-area:hover::-webkit-scrollbar-track,
.section-menu .menu-area::-webkit-scrollbar-thumb,
.section-menu .menu-area:hover::-webkit-scrollbar-thumb,
.section-menu .menu-area::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

/* End Section Menu */

/* Section Banner */
.section-banner {
  position: relative;
}
.rts-mouse-move-button .rts-btn-mouse-move {
  flex-direction: column;
}
.rts-mouse-move-button .rts-btn-mouse-move .icon-container {
  position: static;
  z-index: 1;
  width: 45px;
  height: 45px;
  background-color: #74787c;
  margin: -15px 0 9px;
}
.rts-mouse-move-button .rts-btn-mouse-move:hover .icon-container {
  background-color: #000;
}
.rts-mouse-move-button .rts-btn-mouse-move .content-wrap {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  position: static;
  z-index: 2;
}
.rts-mouse-move-button .rts-btn-mouse-move i {
  position: unset;
}
.rts-mouse-move-button .rts-btn-mouse-move span.cir {
  opacity: 0;
}
.rts-mouse-move-button .rts-btn-mouse-move:hover span.cir {
  opacity: 1;
}
.section-banner .scroll-down-area {
  position: absolute;
  top: calc(100% - 366px);
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-banner .scroll-down-area .text {
  text-wrap: nowrap;
  font-size: 17px;
  transform: rotate(90deg);
  margin: 0;
  max-width: max-content;
  color: #fff;
}
.section-banner .scroll-down-area .line {
  height: 30px;
  width: 1px;
  background: #e3e3e3;
  margin-top: 55px;
}
.section-banner .scroll-down-area img {
  width: 30px;
  margin-top: 26px;
}
.section-banner .social-share-horizental {
  position: absolute;
  bottom: 240px;
  left: 50px;
}
.section-banner .social-share-horizental ul li {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  .section-banner .container {
    max-width: 1340px;
  }
  .section-banner .banner-one-wrapper .para-wraph {
    left: 42%;
    top: 56%;
  }
  .section-banner .banner-one-wrapper .para-wraph p {
    font-size: 20.5px;
    line-height: 32px;
  }
  .section-banner.banner-area.banner-style-one .shape-image {
    left: 70px;
  }
  .section-banner .row.ptb--200.ptb_sm--150 {
    padding-top: 170px;
  }

  .section-banner.banner-area.banner-style-one .top-center-image {
    left: 79%;
    top: 30%;
  }
}

@media only screen and (max-width: 768px) {
  .section-banner .social-share-horizental {
    display: none;
  }
  .section-banner .other-linked-areas {
    left: 11%;
  }
  .section-banner .other-linked-areas .rts_round_btn_wrap {
    display: flex;
    gap: 30px;
  }
  .section-banner .other-linked-areas .rts_round_btn_wrap .btn_wrapper {
    width: 195px;
  }
  .banner-area.banner-style-one .top-center-image {
    top: 39%;
    left: 65%;
  }
}
@media only screen and (max-width: 425px) {
  .section-banner .scroll-down-area {
    display: none;
  }
  .section-banner .other-linked-areas {
    left: 28%;
    top: 42%;
  }
  .section-banner .other-linked-areas .rts_round_btn_wrap {
    gap: 20px;
    flex-direction: column;
  }
  .section-banner .other-linked-areas .rts_round_btn_wrap .btn_wrapper {
    width: 170px;
    height: 170px;
  }
}

/* End Section Banner */

/* Section About Us */
.section-about .rts-about-area-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  z-index: 0;
  background-image: url('/assets/images/unit/03.webp');
  background-position-y: -20px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
}
.section-about .about-content {
  position: relative;
}
.section-about .shape-about-two {
  position: absolute;
  top: -20px;
  right: -20px;
}
.section-about .shape-about-two .image {
  display: block;
  width: 80px;
  height: 80px;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #000;
  transition: 0.3s;
  mask-image: url('/assets/images/about/06.webp');
}
.section-about .text-split-wrap-about {
  margin-top: 0;
  padding: 130px 0 90px;
}
.section-about .rts-about-area-4 {
  padding-top: 0;
}
.rts-dark .rts-about-area-4 {
  background: #090909 !important;
}
.rts-dark .section-about .shape-about-two .image {
  background-color: #fff;
}
.section-about .text-split-wrap-about h2 span {
  display: inline-block;
  padding-right: 24px;
}
@media only screen and (min-width: 1200px) {
  .section-about .text-split-wrap-about h2 {
    font-size: 126px;
  }
  .section-about .about-content .title.quote {
    font-size: calc(var(--h2) - 2px);
  }
}
@media only screen and (max-width: 767px) {
  .section-about .about-content {
    padding-top: 30px;
  }
}
/* End Section About Us */

/* Section Large Image */
.section-large-image {
  padding-top: 130px;
  position: relative;
}
.section-large-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/unit/04.webp');
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.3;
}

@media only screen and (min-width: 1200px) {
  .section-large-image .container-160 {
    max-width: 1550px;
  }
  .section-large-image .title-area-inner.large-image .title {
    font-size: 50px;
    margin-top: -20px;
  }
  .section-large-image .title-area-inner.large-image .title span {
    font-size: 1em;
    text-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
      rgba(0, 0, 0, 0.07) 0px 16px 16px;
  }
  .section-large-image .title-area-inner.large-image .title span.t2 {
    font-size: calc(1em + 12px);
  }
  .section-large-image .title-area-inner.large-image .title span.t3 {
    font-size: calc(1em + 24px);
  }
}
/* End Section Large Image */

/* Section Pricing */
.section-pricing .prices-area {
  position: relative;
}
.section-pricing .prices-area .swiper {
  padding: 24px;
  margin: -20px;
  overflow: hidden;
}

.section-pricing .prices-area .swiper .swiper-slide {
  padding: 0 2px;
}

.section-pricing .prices-area {
  position: relative;
}

.section-pricing .button-area-next-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 10;
}
.section-pricing .accordion-area-start-one {
  margin-top: 25px;
}
.section-pricing .button-area-next-prev .swiper-button {
  position: absolute;
  height: 48px;
  width: 48px;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  font-size: 16px;
}
.section-pricing .button-area-next-prev .swiper-button-prev {
  left: -30px;
}
.section-pricing .button-area-next-prev .swiper-button-next {
  right: -30px;
}
.section-pricing .button-area-next-prev .swiper-button::after {
  transition: 0.3s;
  color: currentColor;
  font-size: 16px;
}
.section-pricing .button-area-next-prev .swiper-button:hover {
  background: #cacaca;
  color: #141414;
}
.section-pricing .button-area-next-prev .swiper-button-prev::after {
  content: '\f053';
  font-family: 'fontawesome';
}
.section-pricing .button-area-next-prev .swiper-button-next::after {
  content: '\f054';
  font-family: 'fontawesome';
}
.section-pricing .pricing-item .dics {
  min-height: calc(var(--line-height-b2) * 2);
}
.section-pricing .title-area .sub-title {
  display: inline-block;
}
.section-pricing .pricing-item .title {
  font-size: 50px;
  margin-top: 30px;
}
.pricing-item .content-area p {
  margin-bottom: 30px;
  color: var(--color-body-2);
  font-size: 18px;
}
.pricing-item .content-area p::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro';
  font-size: 16px;
  display: inline-block;
  margin-right: 15px;
  color: var(--color-body-2);
}
.pricing-item .content-area p strong {
  color: #fff;
}
.pricing-item .badge {
  background: #fff;
  color: #090909;
  right: 2px;
}
.section-pricing .faq-area .answer {
  min-height: calc(var(--line-height-b2) * 4);
}
/* End Section Pricing */

/* Partner */
.section-partner {
  background: #090909;
}
.section-partner .container-2 {
  padding-top: 100px;
  overflow: hidden;
}
.section-partner .brand-area-style-one {
  display: block;
}
.section-partner .title {
  text-transform: uppercase;
}
.section-partner .partner-item {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .section-partner .partner-item img {
    max-width: 150px;
  }
}
/* End Partner */

/* Section Feature */
.section-feature {
  position: relative;
  margin-top: 30px;
}
.section-feature .single-service-card-box-1 {
  padding: 50px 44px;
  margin: 0 15px;
}
.section-feature .title-area {
  position: relative;
}
.section-feature .title-area h5 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.section-feature .title-area .bg-text {
  color: rgba(255, 255, 255, 0.02);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  left: 50%;
  z-index: 0;
  top: 0;
  transform: translate(-50%, -66%);
  min-width: max-content;
  text-transform: uppercase;
}
.feature-item .description {
  min-height: calc(var(--line-height-b2) * 6);
}
.feature-item {
  transition: 0.5s;
}
.feature-item:hover {
  transform: scale(1.05);
}
.section-feature .text-title-linear-orange {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) {
  .section-feature .container {
    max-width: 1500px;
  }
}
/* End Section Feature */

/* Section Our Serive */
.section-our-service {
  --s: 40px;
  --s-hover: 25px;
  position: relative;
}
.rts-dark .section-our-service.rts-case-studys-area.rts-section-gap.parallax-case {
  background-image: url('/assets/images/banner/18.png') !important;
  background-repeat: no-repeat !important;
}
.section-our-service .title-area {
  position: relative;
}
.section-our-service .title-area .bg-text {
  color: rgba(255, 255, 255, 0.02);
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  left: 50%;
  z-index: 0;
  top: 0;
  transform: translate(-50%, -62%);
  min-width: max-content;
  text-transform: uppercase;
}
.our-service-item .inner-content {
  min-width: 40%;
  max-width: 70%;
  right: auto;
  left: 40px;
  opacity: 1;
}
.our-service-item:hover .inner-content {
  left: -50px;
  opacity: 0;
}
.our-service-item .inner-content .content {
  position: static;
  z-index: 2;
}
.our-service-item .inner-content .des {
  padding: 18px 25px;
  background: #fff;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.our-service-item .inner-content .des .name {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
  color: #141414;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}
.section-our-service .inner-content-wrap {
  position: absolute;
  top: var(--s);
  left: var(--s);
  bottom: var(--s);
  right: var(--s);
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  z-index: 2;
}
.section-our-service .inner-content-wrap .content .title {
  margin-bottom: 35px;
  position: relative;
}
.section-our-service .inner-content-wrap .content .title::after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: var(--bg-orange);
  width: 75px;
  height: 3px;
  border-radius: 1px;
}
.section-our-service .inner-content-wrap .single-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
  margin-left: 15px;
}
.section-our-service .inner-content-wrap .single-row i {
  margin-top: 5px;
  margin-right: 5px;
}
.section-our-service .inner-content-wrap .single-row i,
.section-our-service .inner-content-wrap .single-row p b {
  color: #fff;
}
.section-our-service .inner-content-wrap .description {
  margin-bottom: 15px;
  text-align: justify;
}
.section-our-service .inner-content-wrap .s-title {
  margin-bottom: 9px;
}
.section-our-service .inner-content-wrap > div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-our-service .inner-content-wrap .unit {
  position: absolute;
  z-index: 1;
}
.section-our-service .inner-content-wrap .unit-1 {
  left: -10px;
  bottom: 10px;
  width: 160px;
  transform: translateY(100px);
  opacity: 0.4;
}
.section-our-service .inner-content-wrap .unit-2 {
  top: 12px;
  right: 0px;
  width: 120px;
}
.section-our-service .inner-content-wrap {
  transition: 0.8s;
  transform: translateX(30%);
  opacity: 0;
  visibility: hidden;
}
.our-service-item:hover .inner-content-wrap {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.our-service-item::before {
  content: '';
  position: absolute;
  top: var(--s-hover);
  left: var(--s-hover);
  bottom: var(--s-hover);
  right: var(--s-hover);
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 0;
  transition: 0.8s;
  transform: translateX(30%) skewX(-2deg);
}
.our-service-item:hover::before {
  transform: translateX(0) skewX(0);
  opacity: 1;
}
.our-service-item .pli-image {
  position: relative;
  transition: 0.8s;
}
.our-service-item .pli-image .hover-anim-1 {
  -webkit-transform: translateX(30%) scaleX(1.5);
  transform: translateX(30%) scaleX(1.5);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: 0.8s;
}
.our-service-item:hover .pli-image .hover-anim-1 {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.our-service-item .pli-image .hover-anim-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  transition: 0.8s;
}
.our-service-item:hover .pli-image .hover-anim-2 {
  -webkit-transform: translateX(-30%) scaleX(1.5);
  transform: translateX(-30%) scaleX(1.5);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.section-our-service .our-service-item .pli-image.pc {
  display: block;
}
.section-our-service .our-service-item .pli-image.mobile {
  display: none;
}
.section-our-service .text-title-linear-orange {
  margin: unset;
}
.section-our-service .text-title-linear-orange::after {
  width: 25%;
  left: auto;
  right: 12%;
  top: calc(100% + 4px);
  height: 4px;
}
@media only screen and (max-width: 767px) {
  .section-our-service {
    --s: 12px;
    --s-hover: 0;
  }
  .section-our-service .inner-content {
    left: 20px;
    right: 40px;
    bottom: 20px;
  }
  .section-our-service .our-service-item:hover .inner-content {
    left: -70px;
    right: 130px;
    opacity: 0;
  }
  .section-our-service .single-product-case-4 .inner-content a .name {
    font-size: 16px;
  }
  .section-our-service .single-product-case-4 .inner-content span {
    font-size: 12px;
  }
  .section-our-service .inner-content-wrap hr,
  .section-our-service .inner-content-wrap .s-title {
    display: none !important;
  }
  .section-our-service .inner-content-wrap {
    padding: 16px;
  }
  .section-our-service .inner-content-wrap .title {
    font-size: 18px;
  }
  .section-our-service .inner-content-wrap .description {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .section-our-service .inner-content-wrap .single-row p {
    font-size: 14px;
  }
  .section-our-service .our-service-item .pli-image.pc {
    display: none;
  }
  .section-our-service .our-service-item .pli-image.mobile {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .section-our-service .title-area-four-w .title {
    font-size: 70px;
    margin-top: 0;
  }
  .section-our-service .inner-content a h5.name {
    font-size: 20px;
  }
  .section-our-service .inner-content span {
    font-size: 16px;
  }
}
/* End Section Our Serive */

@media only screen and (min-width: 767px) {
  .rts-about-area-4 {
    position: relative;
    z-index: 10;
  }
  .banner-area.banner-style-one .top-center-image .speen-shape text textPath {
    font-size: 6.8px;
  }
  /* .banner-one-wrapper .title {
    font-size: 86px;
  } */
}

@media only screen and (max-width: 479px) {
  .banner-one-wrapper .title {
    font-size: 32px;
  }
}
/* Section FAQs */
.section-fqa {
  padding-top: 100px;
}
.section-fqa .help-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 40px;
  padding-top: 15px;
  padding-right: 14%;
  position: relative;
}
.section-fqa .help-area::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 1px;
  width: 86%;
  background: #141414;
}
.section-fqa .help-area .text-linear-orange {
  font-weight: 700;
  padding: 0 6px;
  font-size: 1.1em;
}
.section-fqa .help-area p {
  margin: 0;
}
.faq-item .body .content {
  padding-bottom: 10px;
  margin-bottom: 45px;
  position: relative;
}
.faq-item .position {
  color: rgba(39, 39, 39, 0.49);
  font-family: Hanken Grotesk;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -4px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.faq-item .position .big {
  font-size: 60px;
}
.faq-item .position .small {
  font-size: 30px;
  margin-bottom: 9px;
}
.faq-item .body .content .title {
  min-height: calc(56px * 2);
  display: flex;
  align-items: center;
}
.faq-item .body .content .title h6 {
  font-weight: 300;
  font-size: 36px;
  line-height: 44px;
  color: #141414;
  font-style: italic;
  flex: 1;
}
.faq-item .answer {
  min-height: calc(1em * 5);
  font-size: calc(var(--font-size-b2) + 4px);
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.faq-item .body .content::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 1px;
  width: 86%;
  background: #e8e8e8;
}
.rts-dark .faq-item .body .content::after {
  background: #141414;
}
.rts-dark .faq-item .body .content .title {
  color: #fff !important;
}
.rts-dark .faq-item .body .content .title h6 {
  color: #fff;
}
.rts-dark .faq-item .position {
  color: var(--color-body);
}

@media only screen and (max-width: 1199px) {
  .faq-item .body .content br {
    display: none;
  }
}
@media only screen and (min-width: 1199px) {
  .section-fqa .big-text {
    font-size: 150px;
    letter-spacing: -5px;
  }
}
@media only screen and (max-width: 768px) {
  .section-pricing .prices-area {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .faq-item .answer br {
    display: none;
  }
  .faq-item .body .content .title {
    font-size: 18px;
    line-height: 31px;
  }
  .faq-item .answer {
    width: unset;
  }
}
/* End Section FAQs */

/* Section Benefit */
.section-benefit {
  position: relative;
  z-index: 2;
  background-color: #090909 !important;
}
.section-benefit .right-shape {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(3%, -33%) scaleX(-1);
  width: 220px;
  opacity: 0.4;
}
.benefit-item .title-box {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: calc(100% - 30px);
  overflow: hidden;
  padding-left: 15px;
}
.benefit-item .title-box h6 {
  font-size: calc(var(--h6) - 2px);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  color: #141414;
  margin-bottom: 0;
  hyphens: auto;
  min-height: calc(1.25em * 2);
}
.benefit-item .title-box__content {
  opacity: 1;
  transform: translate(0);
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  background: var(--bg-orange3);
  padding-left: 4px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.benefit-item .title-box__content2 {
  padding: 12px 16px;
  background: #fff;
}
.benefit-item:hover .title-box__content {
  transform: translateX(-100%);
  opacity: 0;
}
.benefit-item .title {
  position: relative;
  font-size: calc(var(--h5) - 2px);
  margin-bottom: 30px;
}
.benefit-item .title::after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: var(--bg-orange);
  width: 50px;
  height: 3px;
  border-radius: 1px;
}
.benefit-item .rts-feature-area::after {
  content: unset;
}
.benefit-item .rts-feature-area {
  overflow: unset;
}
.benefit-item .flip-animate {
  position: relative;
}
.benefit-item .flip-animate > .front {
  transition: transform 0.5s linear 0s;
  backface-visibility: hidden;
}
.benefit-item .flip-animate > .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  backface-visibility: hidden;
  transition: transform 0.5s linear 0s;
  backface-visibility: hidden;
  transform: perspective(1000px) rotateY(180deg);
  padding: 20px;
}
.benefit-item:hover .flip-animate > .front {
  transform: perspective(1000px) rotateY(-180deg);
}
.benefit-item:hover .flip-animate > .back {
  transform: perspective(1000px) rotateY(0deg);
}
@media only screen and (max-width: 768px) {
  .section-benefit {
    margin-top: 70px;
  }
  .section-benefit .feature-main-wrapper-1 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
/* End Section Benefit */

.rts-dark .section-partner .title-faq-4 .pre {
  color: #fff;
}

/* Contact */
.section-contact,
.section-contact .title-area-appoinment {
  position: relative;
}
.section-contact .title-bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.02);
  font-size: 90px;
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: nowrap;
}
.section-contact .title-area-appoinment .title {
  text-transform: capitalize;
  margin-bottom: 15px !important;
}
.inner-page.contact-page .appoinment-area-two select {
  appearance: none;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: right 1.2rem top 50%;
  background-size: 0.9rem auto;
}
.section-contact .FormBase-overflow {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: linear 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-contact .FormBase-overflow.FormBase-submitted {
  opacity: 1;
  visibility: visible;
}
/* End Contact */

/* Section Footer */
.section-footer {
  padding-top: 130px;
}
.footer-two-wrapper-content .footer-left-two p.disc {
  text-align: justify;
  color: var(--color-body-2);
  font-size: calc(var(--font-size-b2) + 1px);
  margin-bottom: 20px;
}
.section-footer .footer-left-two .title {
  color: var(--color-body);
}
.section-footer .logo {
  margin-bottom: 25px;
  display: block;
}
.footer-two-wrapper-content .footer-right-two .contact-information .map {
  margin-bottom: 40px;
}
.footer-two-wrapper-content .footer-right-two {
  margin-bottom: 10px;
  gap: 75px;
}
.footer-two-wrapper-content .footer-right-two .contact-information.input .form-footer-2 input {
  width: unset;
}
.footer-two-wrapper-content .footer-right-two .contact-information.input .form-footer-2 {
  margin-bottom: 10px;
}
.footer-two-wrapper-content .footer-right-two .contact-information .mail {
  color: #74787c;
}
.footer-two-wrapper-content .footer-right-two {
  align-items: stretch;
}
.section-footer .contact-info a.contact-item:hover {
  transition: 0.5s;
  color: var(--color-body-2) !important;
  text-decoration: underline;
}
.section-footer .copy-right-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section-footer .copy-right-area .copyright {
  flex: '0 0 auto';
  text-wrap: nowrap;
}
.section-footer .social-area {
  flex: 1;
}
.section-footer .social-area ul {
  gap: 10px;
}
.section-footer .child-space {
  flex: 1;
}
.section-footer .navbar-area {
  margin-top: -5px;
}
.section-footer .navbar-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-footer .navbar-area ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 5px 0;
}
.section-footer .navbar-area ul li::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--bg-orange2);
  transition: 0.5s;
}
.section-footer .navbar-area ul li:hover::before {
  width: 16px;
}
.section-footer .navbar-area ul li a {
  color: var(--color-body-2);
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  width: 100%;
  padding: 5px 0;
  transition: 0.5s;
}
.section-footer .navbar-area ul li:hover a {
  color: #fff !important;
}
.section-footer .social-area.sa-m {
  display: none;
}
@media only screen and (max-width: 768px) {
  /* .section-footer .footer-left-two {
    padding-left: 30px;
  } */
  .section-footer .navbar-area {
    padding-top: 50px;
    text-align: center;
  }
  .section-footer .social-area.sa-p {
    display: none;
  }
  .section-footer .social-area.sa-m {
    display: block;
    margin-top: 50px;
  }
  .section-footer .footer-bottom {
    padding-top: 30px;
  }
}
/* End Section Footer */
