/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #d87e0b;
  --secondary: #333333;
  font-family: "DM Sans", sans-serif;
  .slider-timeline__element font-family: "Josefin Sans", sans-serif;
  font-family: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  /* height: 100%; */
  overflow-x: hidden;
}

section {
  position: relative;
  padding: 6rem 0;
}

video {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h5,
h6 {
  font-family: "Roboto Slab", serif;
  color: #000;
  margin: 0;
}

h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--black);
}

h4 {
  margin: 0;
  font-family: "Jost", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 1.125rem 1.875rem;
  border-radius: 10px;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  margin-left: -5rem;
  margin: 0 auto;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.175rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  padding: 1.625rem 2.375rem;
  display: inline-block;
  font-family: "Roboto Slab";
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 600px;
  overflow: hidden;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 0;
  right: 0;
  margin: auto;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.main-slider p {
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #e5e5e5;
}

.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: -1;
}

.slideOne {
  text-align: center;
}

nav.navbar.navbar-expand-lg.p-0 {
  background-color: #d87e0b;
  z-index: 1;
}

.navbar-nav .nav-item .nav-link:hover {
  background-color: #ab590e;
}

.slideOne h3 {
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--white);
  font-family: "Roboto Slab";
}

/* !MAIN HERO SLIDER CSS */

/* Topbar-Sec Css Start */

.topbar {
  background-color: var(--black);
  /* position: relative; */
  padding: 0.925rem 0;
}

.topbar ul {
  display: flex;
  align-items: center;
  gap: 6rem;
  justify-content: space-between;
}

.topbar ul li a h5 {
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #a7a6a6;
}

.topbar ul li a h5 span {
  display: block;
  color: var(--white);
  text-transform: capitalize;
  margin-top: 0.2rem;
  font-size: 1.125rem;
  font-weight: bold;
}

.topbar ul li a {
  /* display: flex; */
  align-items: center;
  gap: 3rem;
  position: relative;
  font-size: 1.5rem;
}

.topbar ul li a i {
  place-items: center;
  border-radius: 12px;
  color: #fff;
}

.topbar ul li a::before {
  position: absolute;
  content: "";
  /* height: 4.125rem; */
  /* width: 4.125rem; */
  border: 1px solid #d87e0b;
  left: -22px;
  border-radius: 10px;
  transform: rotate(45deg);
}

.topbar::before {
  position: absolute;
  content: "";
  height: 151px;
  width: 360px;
  background-color: var(--white);
  left: 0;
  top: 0;
}

.logo {
  margin-left: -4rem;
}

/* Topbar-Sec Css End  */

/* Work-Sec Css Start  */

section.work-sec {
  padding: 0;
}

.work-wrapp {
  position: relative;
}

.work-wrapp::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(178deg, rgb(28 75 65 / 0%), rgb(28 75 65 / 93%));
}

.work-wrapp figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.work-wrapp h3 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Work-Sec Css End  */

/* Cash-Sec Css Start  */

.cash-content {
  text-align: center;
}

.cash-content h2 {
  font-size: 2.25rem;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.1;
}

.cash-content h3 {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #434343;
  line-height: 1.1;
  margin: 1rem 0;
  font-family: "Roboto";
}

.cash-content p {
  font-size: 0.9375rem;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0.75rem auto 1rem;
  width: 86%;
}

.cash-wrapp {
  display: flex;
  align-items: center;
  gap: 2.625rem;
  justify-content: center;
}

.cash-wrapp h2 {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
}

.cash-wrapp figure::before {
  background-color: #191919;
  height: 4.625rem;
  width: 4.625rem;
  display: grid;
  place-items: center;
  position: absolute;
  content: "";
  left: -1.3125rem;
  right: 0;
  top: -1.375rem;
  border-radius: 9px;
  transform: rotate(45deg);
  border: 5px solid #d87e0b;
  z-index: -1;
}

.cash-wrapp figure {
  position: relative;
  z-index: 0;
}

.cash-wrapp figure:hover::before {
  background: #d87e0b;
  transition: 0.9s esae;
}

section.cahs-sec .row+.row {
  padding-top: 5rem;
}

.cash-overaly {
  box-shadow: 0 4px 118px 0 rgb(169 169 169 / 25%);
  padding: 3rem 2rem 3rem 5rem;
  margin-top: -4rem;
  background-color: var(--white);
}

section.cahs-sec {
  padding-top: 0;
}

/* Cash-Sec Css End  */

/* demosec */
.demo-content h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.demo-content p {
  font-size: 1.125rem;
  color: #616161;
  line-height: 2.1;
  margin: 0;
}

.demo-content h3 {
  font-size: 24px;
  font-weight: 400;
  color: #d87e0b;
  font-family: "Roboto";
  margin: 1rem 0 1rem 3rem;
  position: relative;
}

.demo-content {
  background: #f9f9f9;
  border-radius: 7px;
  padding: 38px;
  border: 1px solid #e6e6e6;
}

section.demo-sec figure img {
  width: 100%;
}

section.demo-sec {
  padding-top: 2rem;
}

.demo-content h3::before {
  position: absolute;
  content: "";
  background: var(--primary);
  width: 30px;
  height: 3px;
  left: -35px;
  bottom: 50%;
}

/* demosec */

/* offer-section */
.offer-section {
  background: url(../images/offerbg.webp) center/cover no-repeat;
  padding: 3rem 0;
}

.offerhead h2 {
  font-size: 40px;
  font-weight: 800;
}

.offerhead {
  text-align: center;
  margin-bottom: 1rem;
}

.offerhead h3 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background: #000;
  padding: 9px;
  width: fit-content;
  margin: 0 auto 0.625rem;
}

.offerwrap {
  border: 1px solid rgb(0 0 0 / 12%);
  padding: 30px;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}

.offerwrap figure img {
  width: 100%;
}

.offer-cntnt h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #242424;
  margin-bottom: 12px;
}

.offer-cntnt p {
  font-size: 1rem;
  color: #777777;
  line-height: 1.5;
}

.offer-cntnt {
  margin-top: 12px;
}

.offer-cntnt .themeBtn {
  background: #ab590e;
  margin-top: 12px;
}

/* offer-section */

/* choose-us */
.choose-us {
  background: url(../images/chooseimg2.webp) center/cover no-repeat;
  padding: 0;
}

.choose-cntnt h3 {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  font-family: "Jost", sans-serif;
}

.choose-cntnt h2 {
  font-size: 25px;
  color: #d87e0b;
  font-family: "Jost", sans-serif;
  font-weight: bold;
}

.choose-cntnt p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 2;
  width: 83%;
  font-family: "Josefin Sans", sans-serif;
}

.choose-cntnt {
  padding-left: 7rem;
}

.choose-cntnt .themeBtn {
  margin-top: 1rem;
  border-radius: 50px;
}

/* choose-us */

/* crush  */
.crush-cntnt h2 {
  font-size: 25px;
  font-weight: bold;
  color: #d87e0b;
  font-family: "Jost";
}

.crush-cntnt h3 {
  font-size: 40px;
  font-weight: 500;
  color: #1b1f2e;
  margin: 1rem 0 1.125rem 0;
  font-family: "Jost";
}

.crush-cntnt p {
  font-size: 1rem;
  color: #000;
  line-height: 2;
  width: 84%;
  margin-bottom: 1rem;
  font-family: "Josefin Sans", sans-serif;
}

.crush-cntnt .themeBtn {
  border-radius: 50px;
}

/* crush  */

/* Among-Sec Css Start */
.among-sec {
  background: #f1f1f1;
}

.among-top {
  text-align: center;
  margin-bottom: 3rem;
}

.among-top p {
  color: #616161;
  line-height: 1.9;
  text-transform: capitalize;
  font-size: 1rem;
  width: 64%;
  margin: 1rem auto;
  font-family: "Roboto";
}

.among-content h2 {
  font-size: 22px;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1;
  margin: 1rem 0;
  font-family: "Roboto Slab";
}

.among-content p {
  color: #6b6b6b;
  line-height: 1.6;
  text-transform: capitalize;
  font-size: 0.9375rem;
  font-family: "Roboto";
}

.amonge-wrapp {
  text-align: center;
}

/* Among-Sec Css End  */

/* Contact-Sec Css Start */
.contact-top {
  margin-bottom: 4.1875rem;
}

.contact-top p {
  color: #616161;
  font-size: 1.125rem;
  line-height: 1.9;
  text-transform: capitalize;
  margin-top: 0.225rem;
}

section.contact-sec ul li a i {
  /* height: 5.8125rem; */
  /* width: 5.8125rem; */
  /* display: grid; */
  /* place-items: center; */
  /* border-radius: 10px; */
  /* border: 2px solid #d87e0b; */
  color: var(--black);
  font-size: 1.6rem;
  font-weight: bold;
}

section.contact-sec ul li a {
  display: flex;
  align-items: center;
  gap: 2.625rem;
  position: relative;
}

section.contact-sec ul li a h5 {
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #828282;
  font-family: "Roboto";
}

section.contact-sec ul li a h5 span {
  display: block;
  margin-top: 0.225rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--black);
  font-family: "Roboto Slab";
}

section.contact-sec ul li+li {
  margin: 2.5rem 0;
}

.contact-wrapp {
  background-color: #ab590e;
  border: 1px solid #e6e6e6;
  padding: 1.5rem;
}

form.contact-form .form-control {
  height: 65px;
  outline: unset;
  background-color: var(--white);
  box-shadow: unset;
  border-radius: 5px;
}

form.contact-form textarea.form-control {
  height: 190px;
}

form.contact-form label {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Roboto";
}

form.contact-form .form-control::placeholder {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #979595;
  font-family: "Roboto";
}

form.contact-form button {
  /* height: 3.375rem; */
  width: fit-content;
  text-align: center;
  padding: 1rem;
  background-color: var(--black);
  border: unset;
}

section.contact-sec ul li a::before {
  position: absolute;
  content: "";
  height: 4.125rem;
  width: 4.125rem;
  border: 1px solid #d87e0b;
  left: -21px;
  border-radius: 10px;
  transform: rotate(45deg);
}

section.contact-sec ul li+li {
  margin-top: 80px;
}

section.contact-sec ul {
  margin-bottom: 5rem;
}

h2.mainHead {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 27px;
  font-family: "Roboto Slab";
}

/* Contact-Sec Css End  */

/*  Footer-Sec Css Start */
footer {
  background-color: var(--black);
  padding-top: 4rem;
}

footer h2 {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 1rem;
}

ul.footer-link li a {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: rgb(255 255 255 / 89%);
  font-family: "Roboto";
}

ul.footer-link li+li {
  margin: 0.425rem 0;
}

ul.contact-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: rgb(255 255 255 / 89%);
  font-family: "Roboto";
}

ul.contact-list li+li {
  margin: 1rem 0;
}

ul.footer-social {
  display: flex;
  align-items: center;
  gap: 0.925rem;
}

ul.footer-social li a i {
  height: 2.375rem;
  width: 2.375rem;
  display: grid;
  place-content: center;
  border-radius: 50px;
  color: var(--white);
  border: 2px solid var(--white);
}

.footer-bottom {
  position: relative;
  text-align: center;
  margin-top: 8.75rem;
  background-color: #161917;
  padding: 1.8rem 0;
}

.footer-bottom p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
}

.footer-bottom a {
  position: absolute;
  right: 3.125rem;
  bottom: 0;
  top: -2.6rem;
}

.footer-bottom a i {
  height: 4.125rem;
  width: 4.125rem;
  display: grid;
  place-items: center;
  background-color: var(--white);
  color: var(--black);
  border-radius: 7px;
}

footer figure {
  text-align: center;
}

/*  Footer-Sec Css End  */

/* Marquee Section */
section.marquee-sec {
  background: #69b31d;
  padding: 22px 0;
}

.marquee {
  user-select: none;
  display: flex;
  gap: 2.5rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.marquee ul {
  list-style: none;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  animation: marquee 10s linear infinite;
  align-items: center;
}

.marquee .text {
  text-align: center;
  font-size: 36px;
  line-height: 1;
  position: relative;
  z-index: -1;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 50px;
  font-family: "Plus Jakarta Sans";
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

section.marquee-sec {
  padding: 3rem 0;
  background-color: var(--primary);
}

.baSlider {
  margin-bottom: 0;
}

.baSlider :is(.before, .after) :is(div, img) {
  height: 420px !important;
  object-fit: cover;
}

.baSlider [baSlider-handler] {
  top: 50% !important;
  transform: translateY(-50%);
  background: #fff;
  width: 44px;
  height: 44px;
  border: 0;
}

.baSlider [baSlider-handler]>img {
  width: auto;
  height: auto;
}

.baSlider.horizontal>.frame>.after {
  border-right: 6px solid #fff;
}

.baSlider__text {
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
}

.gallerytop {
  text-align: center;
  margin-bottom: 2rem;
}

section.gallery-section.gallerInner {
  box-shadow: 0 4px 71px rgb(164 164 164 / 25%);
}

section.gallery-section.gallerInner .row+.row {
  margin-top: 3rem;
}

.frame h4 {
  position: absolute;
  z-index: 11;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #000;
  padding: 10px 15px;
  bottom: 50%;
  right: 10%;
  border-radius: 3px;
  text-transform: capitalize;
}

.frame {
  position: relative;
}

.frame h3 {
  position: absolute;
  z-index: 11;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #000;
  padding: 10px 15px;
  bottom: 50%;
  left: 10%;
  border-radius: 3px;
  text-transform: capitalize;
}

.baSlider.bassmallsilde :is(.before, .after) :is(div, img) {
  height: 338px !important;
}

.themeBtn:hover {
  background: #000;
  color: #fff;
}

.offer-cntnt .themeBtn:hover {
  background: var(--primary);
  color: #fff;
}

.choose-cntnt .themeBtn:hover {
  background: #fff;
  color: #000;
}

ul.footer-link li a:hover {
  color: var(--primary);
}

.slideOne .themeBtn:hover {
  background: #fff;
  color: #000;
}

section.crush-section {
  padding: 6.25rem 0;
}

.among-top .mainHead {
  text-transform: capitalize;
}

ul.footer-social li a i:hover {
  background-color: #fff;
  color: #000;
  transition: 0.6s ease;
}

/* Inner-Pages Css Start */
.inner-banner {
  position: relative;
  height: 600px;
  background: var(--primary);
  margin-bottom: .4rem;
}

.inner-banner .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
  inset: 0;
  text-align: center;
}

.inner-banner h2 {
  font-size: 70px;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

/* Inner-Pages Css End   */

/* We Are Anubis */

.anubis {
  position: relative;
  background: url(../images/anubis.webp) no-repeat top center;
  background-size: 100% 100%;
  margin: 3rem 0;
}

.anubis-content .subtitle {
  color: #db7c24;
  border: 1px solid #db7c24;
  border-radius: 5px;
  padding: 18px 16px;
  margin-bottom: 18px;
  width: fit-content;
}

.anubis-content .heading {
  font-weight: bold;
  font-size: 50px;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.anubis-content p+p {
  margin-top: 20px;
}

.anubis-content p {
  color: #535151;
  line-height: 21px;
  width: 90%;
  text-transform: capitalize;
  font-family: "Roboto Slab";
}

.anubis-content .themeBtn {
  margin-top: 42px;
}

.cardboard li {
  font-size: 30px;
  line-height: 44px;
  color: #fff;
  font-weight: bolder;
  display: flex;
  justify-content: space-between;
  padding: 11px 10px 11px 50px;
  align-items: center;
  border-radius: 60px;
  margin-bottom: 3px;
  text-transform: uppercase;
  height: 123px;
}

.cardboard li:nth-child(1) {
  background: #bd1727;
  width: 723px;
}

.cardboard li:nth-child(1) span {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #93111e;
}

.cardboard li:nth-child(2) {
  background: #f66c14;
  width: 636px;
}

.cardboard li:nth-child(2) span {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #c84d01;
}

.cardboard li:nth-child(3) {
  background: #e7b700;
  width: 539px;
}

.cardboard li:nth-child(3) span {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #ad8a00;
}

.cardboard li:nth-child(4) {
  background: #0f9950;
  width: 539px;
}

.cardboard li:nth-child(4) span {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #0b723c;
}

.cardboard li:nth-child(5) {
  background: #425166;
  width: 636px;
}

.cardboard li:nth-child(5) span {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #313d4d;
}

/* FAQS */

.faqs .subtitle {
  color: #ab590e;
  font-size: 16px;
  font-family: "Roboto Slab";
  font-weight: 400;
  margin-bottom: 11px;
  letter-spacing: 3px;
  line-height: 25px;
  text-transform: uppercase;
}

.faqs .heading {
  margin-bottom: 42px;
  font-size: 50px;
  font-weight: 600;
}

.card .card-header {
  padding: 26px 28px 26px 26px;
}

.card .card-header .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card .card-header {
  /* padding: 26px 28px 26px 26px; */
  /* background: #ffffff; */
  /* border: 0; */
  /* border: 1px solid #adadad; */
  /* border-radius: 17px; */
  background: transparent;
  padding: 0;
  border: 0;
}

.card .card-header .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px 26px 26px;
  background: #ffffff;
  border: 0;
  border: 1px solid #adadad;
  border-radius: 17px;
}

.btn h4 {
  color: #000;
  font-size: 20px;
  font-family: "Roboto Slab";
}

.btn span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #ab590e;
  border-radius: 14px;
  color: #000;
}

.card {
  border: 0;
  margin-bottom: 17px;
  background: rgba(34 34 34 / 5%);
  border-radius: 17px;
}

.card-body {
  padding: 36px;
}

.card-body p {
  color: #000;
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-weight: 500;
  width: 51%;
  line-height: 21px;
}

.card-header.active {
  background-color: #ab590e;
}

.card-header.active span {
  color: #fff;
  border: 1px solid #fff;
}

.card-header.active h4 {
  color: #fff;
}

/* video gallery */

.video-gallery .row+.row {
  margin-top: 60px;
}

section.video-gallery .offerwrap {
  padding: 0;
  border: 0;
  box-shadow: 0 0 25px 0 rgb(0 0 0 / 15%);
  text-align: left;
}

section.video-gallery .offerwrap .offer-cntnt {
  margin: 0;
  padding: 2rem 2.5rem;
}

section.video-gallery .offerwrap .offer-cntnt h3 {
  font-family: "Roboto Slab", serif;
  font-size: 25px;
  color: #030f27;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
}

section.video-gallery .offerwrap .offer-cntnt .themeBtn {
  background: #ab590e;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  border-radius: 5px;
}

section.video-gallery .offerwrap .offer-cntnt p {
  color: #333333;
  font-size: 16px;
  line-height: 27px;
  width: 91%;
  font-family: "Roboto Slab", serif;
  margin: 0.7rem 0 2rem;
}

.card .card-header .btn[aria-expanded="true"] {
  background: #ab590e;
  color: var(--white);
}

.card .card-header .btn[aria-expanded="true"] h4 {
  color: var(--white);
}

.card .card-header .btn[aria-expanded="true"] span {
  border-color: var(--white);
}

.card .card-header .btn[aria-expanded="true"] span i:before {
  content: "\f054";
  color: var(--white);
}

.btn span i {
  font-weight: 600;
  font-size: 14px;
}

.inner-banner video {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
}

.offer-list li {
  padding: 1rem;
  width: 50%;
}

.offer-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(216, 127, 11, 0.1);
  height: 100%;
  padding: 1rem;
}

.offer-box i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--primary);
  color: var(--black);
  font-size: 30px;
}

.offer-box p {
  font-size: 18px;
  color: var(--black);
}

.logotablet {
  display: none;
}

.main-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video.work-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/*  */

.calculator-section {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.calculator-column {
  display: flex;
  flex-direction: column;
}

.step {
  margin-bottom: 20px;
}

.pill {
  background-color: #db7c24;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 10px;
}

input[type="number"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 5px;
  padding-left: 30px;
}

.input-label {
  font-size: 14px;
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-prefix {
  position: absolute;
  left: 10px;
  top: 13px;
  font-size: 16px;
}

.prefix-spacing {
  padding-left: 25px;
}

.slider-container {
  margin: 0 auto;
  position: relative;
  height: 350px;
  width: 100px;
  margin-top: 20px;
}

#bin {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 350px;
  background-color: #de7b31;
  border: 5px solid #e76301;
  border-bottom: 0;
  transition: height 0.3s ease;
}

#trash {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 120px;
  height: 20px;
  background-color: #34495e;
  border-radius: 5px 5px 0 0;
}

.slider-control {
  margin-top: 20px;
}

#range-slider {
  width: 100%;
  height: 350px;
  margin-top: 10px;
  writing-mode: sideways-rl;
  z-index: 9;
  position: relative;
  opacity: 0;
}

#range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: orange;
  cursor: pointer;
  border: 2px solid white;
  margin-top: -6px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

#range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: orange;
  cursor: pointer;
  border: none;
}


.slider-result {
  position: absolute;
  left: 0;
  margin-top: -10px;
  color: #000;
  border-radius: 20px;
  font-weight: bold;
  transition: top 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-result img {
  width: 100px;
}

.slider-timeline {
  position: relative;
  margin-top: 40px;
  height: 250px;
}

.slider-timeline__element {
  /* position: absolute; */
  left: 0;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  color: #7f8c8d;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 2px solid #bdc3c7;
  transition: all 0.3s ease;
}

.slider-timeline__element.active {
  color: #db7c24;
  font-weight: bold;
  border-left: 3px solid #db7c24;
}

.calculations-form {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.calculations-form td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.calculations-form tr:last-child td {
  border-bottom: none;
}

.calculations-form .td-title {
  font-weight: bold;
  font-size: 14px;
  color: #7f8c8d;
}

.calculations-form tr.savings td {
  font-weight: bold;
  color: var(--primary);
  border-top: 2px solid #eee;
}

.abesd {
  position: absolute;
  top: 35%;
  left: 52%;
}

.abesd h5 {
  font-size: 14px;
  width: 50%;
}

.anubis-list {
  margin-top: 1rem;
}

.anubis-list li {
  color: #535151;
  margin-bottom: .5rem;
  font-weight: 500;
}

.work-wrapp video {
  height: 100%;
  object-fit: cover;
}

div#crushero {
  display: flex;
  align-items: flex-end;
}

.google-trand {
  font-size: 20px;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

div#google_translate_element .goog-te-combo {
  padding: 10px 10px;
}

.blog-ul {
  margin-top: 12px;
}

.blog-ul li {
  margin-bottom: 15px;
  font-family: "Roboto Slab", serif;
}

.blog-inner-content img {
  width: 600px;
  height: 400px;
}

.blog-inner-content h3 {
  font-family: "Roboto Slab", serif;
  margin-top: 15px;
}