/*   add Import font and  tag */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
/*  Start basic style and Code Reset  */

html {
  scroll-behavior: smooth;
  transition: all 0.5 linear;
  -webkit-transition: all 0.5 linear;
  -moz-transition: all 0.5 linear;
  -ms-transition: all 0.5 linear;
  -o-transition: all 0.5 linear;
}

:root {
  --primary-color: #fca311;
  --black-color: #202020;
  --white-color: #ffffff;
  --bg-color-hero: #101d38;
  --df-short-text-color: #585b6c;
  --cir-nav-width: 21px;
  --cir-nav-height: 21px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--black-color);
  border: none;
  padding: 12px 32px;
  border-radius: 100px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s linear;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.btn-primary-2 {
  background-color: var(--primary-color);
  color: var(--black-color);
  border: 2px solid transparent;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  border-radius: 100px;
  padding: 16px 40px 16px 40px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.btn-dark-outline {
  background-color: transparent;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  padding: 16px 40px 16px 40px;
  border: 2px solid #101d38;
  color: #101d38;
  border-radius: 100px;
  transition: all 0.2s linear;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.btn-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-section .left-site .btn-primary-2 {
  margin-top: 40px;
}

.btn-nav {
  color: #fca311;
  border: 2px solid transparent;
  background-color: transparent;
  font-size: 2rem;
  border-radius: 10px;
  margin-top: -0.5rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
:not(.btn-check) + .btn:active,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-dark-outline:hover,
.btn-primary-2:hover {
  background-color: #fff;
  color: #101d38 !important;
  border: 2px solid var(--primary-color);
  border-right: 2px solid #101d38;
  border-bottom: 2px solid #101d38;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/*  Start basic style and Code Reset  */

/*  Start main style */

/* Navigation */
header {
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
  padding-bottom: 20px;
  background-color: transparent;
  transition: background-color linear 0.5s;
  -webkit-transition: background-color linear 0.5s;
  -moz-transition: background-color linear 0.5s;
  -ms-transition: background-color linear 0.5s;
  -o-transition: background-color linear 0.5s;
}
.df-container {
  width: calc(100% - 280px);
  margin: 0 auto;
  margin-top: 90px;
}

header nav {
  max-width: 100%;
  padding-top: 27px;
  width: calc(100% - 280px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center !important;
}
nav .logo {
  max-width: 234px;
  width: 100%;
  height: 39px;
}

.middle-nav-link {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38px;
  text-transform: capitalize;
  margin: 0px;
}
.offcanvas-body > .middle-nav-link {
  margin-top: 50px;
  gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
}

.middle-nav-link li a {
  text-decoration: none;
  color: white;
  font-family: Poppins;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-align: right;
  letter-spacing: 1px;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  position: relative;
  z-index: 10;
}

.middle-nav-link li a > .cir-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.5s linear;
  transform: translate(-33%, 10%);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  z-index: -1;
  -webkit-transform: translate(-33%, 10%);
  -moz-transform: translate(-33%, 10%);
  -ms-transform: translate(-33%, 10%);
  -o-transform: translate(-33%, 10%);
}

.middle-nav-link li a:hover > .cir-nav,
.middle-nav-link li a.nav-active > .cir-nav {
  width: var(--cir-nav-width);
  height: var(--cir-nav-height);
}
.middle-nav-link li a:hover > .fl,
.middle-nav-link li a.nav-active > .fl {
  color: #202020;
  font-weight: 700;
}

.offcanvas-body > .middle-nav-link li a {
  color: var(--black-color);
  text-align: left;
  /* border: 1px solid red; */
  font-weight: 600;
  font-size: 18px;
}

/* Navigation */

/*  Start main style */
.container-text {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 0px; /* Adjust to control the overlap */
}

.circle {
  background-color: #fca311;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-22%, -55%);
  z-index: 1;
  -webkit-transform: translate(-22%, -55%);
  -moz-transform: translate(-22%, -55%);
  -ms-transform: translate(-22%, -55%);
  -o-transform: translate(-22%, -55%);
}

.cir-1 {
  width: 109px;
  height: 109px;
  transform: translate(-30%, -134%);
  -webkit-transform: translate(-30%, -134%);
  -moz-transform: translate(-30%, -134%);
  -ms-transform: translate(-30%, -134%);
  -o-transform: translate(-30%, -134%);
}
.cir-2 {
  width: 91px;
  height: 91px;
}

.highlight-text {
  font-family: Unbounded;
  font-size: 70px;
  font-weight: 700;
  line-height: 90px;
  text-align: left;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.fl-1::first-letter {
  color: #202020;
}
.fl-1::first-letter {
  color: #202020;
}
.highlight-text {
  overflow: hidden;
  display: inline-block;
}
.highlight-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
/*  Hero Section  */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 68px;
  height: auto;
  background: #0f1c36;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 100%,
      rgb(254, 239, 213) 100%
    ),
    url("../Image/hero-bg-1.jpg") left no-repeat,
    url("../Image/side-bg.svg") right no-repeat;
  background-size: 70% 100%, 73% 100%, 40% 140%;
  padding-top: 100px;
  padding-bottom: 120px;
}
.hero-section > .left-site {
  color: #ffffff;
  padding-left: 100px;
}
.hero-section > .right-site {
  z-index: 10;
  position: relative;
}

.short-text-fca {
  font-family: Unbounded;
  font-size: 26px;
  font-weight: 500;
  line-height: 78px;
  text-align: left;
  color: #fca311;
  z-index: 5;
}
.hero-main-text {
  max-width: 995px;
  width: 100%;
  font-family: Unbounded;
}

.hero-section > .right-site > .circle-image {
  position: absolute;
  top: -10px;
  left: -100px;
  z-index: -5;
}

.hero-para {
  max-width: 886px;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  color: #ffffff;
}

.hero-section > .right-site {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  /* overflow: hidden; */
  padding: 50px 0;
  padding-right: 20px;
}
.hero-section > .right-site::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  width: 45%;
  height: 100%;
  border: 3px solid #fca311;
  border-left: none;
  box-sizing: border-box;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.hero-section > .right-site .hero-img img {
  display: block;
  border-radius: 16px;
  max-width: 662px;
  padding-right: 50px;
  max-height: 786px;
  height: 100%;
  object-fit: cover;
  object-position: right;
  width: 100%;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
}
.hero-main-text > span:first-of-type {
  color: #101d38;
}

.hero-section .short-text-fca {
  text-align: left;
}

/*  Hero Section  */

/* Section 2 Marquee animation   */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: var(--primary-color);
}

.marquee-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 163px;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  -webkit-animation: marquee 15s linear infinite;
}

.marquee-content > img {
  width: 32.61px;
  height: 34.11px;
  object-fit: contain;
  object-position: center;
  margin-right: 10px;
}
.marquee-content > h3 {
  font-family: Unbounded !important;
  font-size: 50px;
  font-weight: 900;
  line-height: 78px;
  text-align: left;
  color: #101d38;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 30px; /* Space between the items */
}
.marquee-content > .strockText {
  font-family: Unbounded;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 0.1px #202020;
  color: #fca311;
  text-shadow: 1px 1px 0 #202020, -1px -1px 0 #202020, 1px -1px 0 #202020,
    -1px 1px 0 #202020, 1px 1px 0 #202020;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Section 2 Marquee animation   */
/* section 3 Start here  */
.df-title {
  max-width: 890px;
  width: 100%;
  font-family: Unbounded;
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  text-align: left;
  margin-bottom: 20px;
}
.cir-short {
  width: 91px;
  height: 91px;
  transform: translate(-20%, -162%);
  -webkit-transform: translate(-20%, -162%);
  -moz-transform: translate(-20%, -162%);
  -ms-transform: translate(-20%, -162%);
  -o-transform: translate(-20%, -162%);
}

.df-para {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: var(--df-short-text-color);
}
.about-royex .left-site {
  position: relative;
}
.about-royex .left-site-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 674px;
  width: 100%;
  height: 887px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.about-royex .left-site .about-circle > img {
  position: absolute;
  bottom: -30px;
  left: -50px;
  z-index: -1;
}
.about-circle > img {
  max-width: 287px;
  max-height: 294px;
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.list-of-event {
  margin-top: 30px;
  margin-bottom: 30px;
}
.df-para > i {
  color: var(--bg-color-hero);
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: var(--bg-color-hero);
  margin-right: 5px;
}
.df-para.list {
  color: var(--df-short-text-color);
  padding: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  gap: 5px;
}

.about-royex .right-site {
  margin-left: 0px;
}

.df-para.feature {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
  width: calc(100% - 10px);
  color: var(--black-color);
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 20px;
}

.about-royex .short-text-fca {
  text-align: left;
  line-height: 20px;
  margin-bottom: 20px;
}
/* section 3 end  here  */
/* section 4 start  here  */
.section-4 {
  background-image: url("../Image/bg-all-section.png");
  margin-top: 80px;
  padding-top: 50px;
  padding-bottom: 80px;
  height: auto;
  background-repeat: repeat-y;
}
.section-4 .df-container {
  margin: 0px auto;
  padding: 0px;
  margin-bottom: 80px;
}
.section-4 img {
  max-width: 674px;
  max-height: 585px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.sec-4-header {
  padding-bottom: 40px;
}

.sec-4-header .short-text-fca {
  display: block;
  text-align: center;
  text-transform: capitalize;
  font-family: Unbounded;
}

.sec-4-header .df-title {
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.sec-4-header .cir-short {
  left: 28.2%;
  top: 130px;
}

.df-title.no-hl-title {
  max-width: 800px;
  width: 100%;
  font-family: Unbounded;
  margin-bottom: 25px;
  font-size: 45px;
}
.sec-4-df-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
}

.sec-4-df-between .left {
  max-width: 880px;
  width: 100%;
}
.list-of-sec-4 {
  margin-top: 21px;
  margin-bottom: 31px;
}
/* section 4 end here     */
/* section 4 Start  Count Up     */
#countUp {
  margin-top: 100px;
  margin-bottom: 100px;
}

.countup-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: wrap;
}

.count-box {
  padding-left: 0px;
  border-right: 1.5px solid #c2c2c2;
  padding: 20px;
}

.count-box.active {
  border-right: none;
}
.count-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.counter-box-text {
  display: inline-block;
  position: relative;
}
.counter-short-text {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 30px;
  text-align: left;
  color: var(--df-short-text-color);
}
.counter-box-text > .highlight-text {
  padding-bottom: 0;
  margin-bottom: 0px;
  font-family: Unbounded;
  font-size: 80px;
  font-weight: 700;
  line-height: 62px;
  text-align: left;
}
.counter-box-text > .cir-short {
  width: 60px;
  height: 60px;
  z-index: -1;
  transform: translate(-25%, -120%);
  -webkit-transform: translate(-25%, -120%);
  -moz-transform: translate(-25%, -120%);
  -ms-transform: translate(-25%, -120%);
  -o-transform: translate(-25%, -120%);
}
.counter-box-text > .highlight-text > p {
  padding: 0;
  padding-bottom: 0px;
  margin: 0;
  display: inline-block;
  z-index: 20;
}
/* section 4 End      */
/* section 6  */

.feature-section .df-container {
  padding: 0px;
  margin: 0px auto;
  height: auto;
}
.feature-section {
  background: linear-gradient(rgba(16, 29, 56, 1), rgba(16, 29, 56, 1)),
    url("../Image/sec-5-bg.png");
  background-blend-mode: multiply;
  opacity: 1;
  padding: 80px 0;
  margin-top: 50px;
  height: auto;
  color: var(--white-color);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.feature-section .circle-image {
  position: absolute;
  bottom: -3.8%;
  right: -60px;
  z-index: 1;
}
.section-6-header .short-text-fca {
  text-align: center;
  display: block;
  font-family: Unbounded;
  font-size: 26px;
  font-weight: 500;
  line-height: 78px;
  text-align: center;
  margin-bottom: 0px;
}
.section-6-header .df-title {
  font-family: Unbounded;
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  text-align: center !important;
  margin: 0 auto;
}
.section-6-header .cir-short {
  width: 91px;
  height: 91px;
  top: 128px;
  left: 32%;
}
.section-6-header .df-title::first-letter {
  color: #101d38;
}

.section-6-header {
  margin-bottom: 45px;
}
.ft-box {
  padding: 10px 50px;
  height: 100%;
  max-height: auto;
}

.ft-box > hr {
  margin: 0 auto;
  width: 80%;
  height: 2px;
  background-color: #343f56;
  margin-top: 20px;
  margin-bottom: 10px;
}

.f-title {
  font-family: Unbounded;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  display: flex;
  align-items: self-start;
  gap: 29px;
}
.f-title > img {
  max-width: 55px;
  max-height: 50px;
  margin-top: 8px;
}
.ft-para {
  max-width: 370px;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
/*  Feature */

/* preservation-section */
.preservation-header {
  margin-bottom: 45px;
}
.preservation-header .cir-short {
  top: 130px;
  left: 0%;
}
.preservation-right-box {
  display: flex;
  align-items: self-start;
  gap: 20px;
  margin-bottom: 10px;
}
.preservation-right-box h2 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
  color: var(--black-color);
  margin-bottom: 5px;
}
.preservation-right-box p {
  padding: 0px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: var(--df-short-text-color);
  padding-bottom: 30px;
}
/* preservation-section */
/* banner-section */
.banner-section {
  background-image: url("../Image/banner-call-back.png");
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0px;
}
.banner-content .banner-title {
  font-family: Unbounded;
  font-size: 45px;
  font-weight: 700;
  line-height: 62px;
  text-align: left;
  text-transform: capitalize;
  color: var(--black-color);
  max-width: 1015px;
}
.btn-dark {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  padding: 16px 40px;
  text-transform: capitalize;
  color: var(--white-color);
  background-color: var(--bg-color-hero);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.banner-content .cir-short {
  width: 91px;
  height: 91px;
  top: 130px;
  left: -5px;
}
/* banner-section */

/* section  8  */
.testimonial-section {
  background-image: url("../Image/sec-8-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
}

.slider-image {
  transform: scale(0.85);
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
}

.testimonial-section .df-title {
  max-width: 100%;
  text-align: center;
  width: 100%;
  font-size: 50px;
  color: var(--white-color);
  text-transform: capitalize;
}

.testimonial-section .df-title::first-letter {
  color: #101d38;
}
.testimonial-section .cir-short {
  top: 130px;
  left: 23%;
}
.short-text-fca {
  text-align: center;
  width: 100%;
  display: block;
}
.testimonial-h2-title {
  color: white;
  font-family: Unbounded;
  font-size: 35px;
  font-weight: 600;
  line-height: 58px;
  text-align: left;
  max-width: 100%;
  margin: 24px 0px;
}
.star-container {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
  color: #f59e0b;
}
.testimonial-para {
  font-family: Poppins;
  font-size: 18px;
  max-width: 700px;
  font-weight: 400;
  line-height: 36px;
  text-align: justify;
  color: white;
}
.testimonial-name {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  color: white;
  margin-top: 40px;
}
.owl-carousel .owl-item .comma-sign {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: flex;
  justify-content: start;
}
.designation {
  display: block;
  font-size: 20px;
  font-weight: 400;
}
.testimonial-section .owl-dots {
  display: none;
}

.testimonial-section .owl-nav > .owl-next,
.testimonial-section .owl-nav > .owl-prev {
  width: 50px;
  height: 50px;
  margin: 0 5px;
  display: none;
}

.testimonial-section .custom-buttons {
  position: absolute;
  top: 190px;
  right: 130px;
  z-index: 20;
}
.testimonial-section .custom-buttons > button {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border: 1px solid white;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: transparent;
  color: white;
  -webkit-text-stroke: 0.5px;
  font-size: 18px;
  cursor: pointer;
}
.testimonial-section .custom-buttons .btn-next {
  -webkit-text-stroke: 1px;
  background-color: #fca311;
  color: black;
}
/* section  8  */
/* section  9 blog   */
.section-9-case-study .owl-dots {
  display: none;
}
.section-9-case-study {
  background-image: url("../Image/bg-all-section.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
}
.section-9-case-study .df-container {
  margin-top: 0px;
}

.case-study-header .short-text-fca {
  font-family: Unbounded;
  font-size: 26px;
  font-weight: 500;
  line-height: 78px;
  text-align: center;
  text-transform: uppercase;
}

.section-9-case-study .df-title {
  margin: 0;
  max-width: 100%;
  text-align: center;
  font-size: 50px;
  color: var(--black-color);
  text-transform: capitalize;
}
.section-9-case-study .cir-short {
  top: 130px;
  left: 33.5%;
}
.case-study-header {
  padding-bottom: 70px;
}

.case-study-card {
  max-width: 520px;
  width: 100%;
  height: auto;
}
.case-study-slider {
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
}
.case-card-img {
  max-width: 520px;
  max-height: 350px;
  min-height: 350px;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.case-card-title {
  font-family: Unbounded;
  font-size: 35px;
  font-weight: 700;
  line-height: 46px;
  text-align: left;
  height: 46px;
  overflow: hidden;
}
.case-card-para {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: var(--df-short-text-color);
  padding-bottom: 20px;
  height: 90px;
  overflow: hidden;
  margin-bottom: 30px;
}

/* section  9 blog   */
/* section  10 blog   */
.section-10-blog {
  padding: 20px 0px;
  background-color: #fff;
  padding-bottom: 100px;
}
.section-10-blog .df-container {
  margin-top: 0px;
}
.section-10-blog .df-title {
  max-width: 889px;
  text-align: left;
}
.section-10-blog .short-text-fca {
  font-family: Unbounded;
  font-size: 26px;
  font-weight: 500;
  line-height: 78px;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.section-10-blog .cir-short {
  top: 130px;
  left: -5px;
}
.blog-header {
  padding-bottom: 60px;
}

.mini-blog-card,
.blog-card-big {
  text-decoration: none;
  color: #202020;
}
.blog-card-big {
  min-height: 570px;
  height: 570px;
  transition: all linear 0.5;
  -webkit-transition: all linear 0.5;
  -moz-transition: all linear 0.5;
  -ms-transition: all linear 0.5;
  -o-transition: all linear 0.5;
}

.mini-blog-card .short-title,
.blog-card-big .short-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
  line-height: 78px;
  text-align: left;
  color: #fca311;
  text-transform: capitalize;
}

.mini-blog-card h3,
.blog-card-big h3 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 700;
  line-height: 37.2px;
  text-align: left;
}
.mini-blog-card .blog-para,
.blog-card-big .blog-para {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: var(--df-short-text-color);
}
/* image animation  */

.blog-card-big:hover h3 {
  color: #fca311;
}
.mini-blog-image,
.blog-big-image {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  transition: clip-path 0.5s linear, border-radius 0.3s linear;
  -webkit-transition: clip-path 0.5s linear, border-radius 0.3s linear;
  -moz-transition: clip-path 0.5s linear, border-radius 0.3s linear;
  -ms-transition: clip-path 0.5s linear, border-radius 0.3s linear;
  -o-transition: clip-path 0.5s linear, border-radius 0.3s linear;
}

.mini-blog-image > img,
.blog-big-image > img {
  width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.mini-blog-image > .overlay,
.blog-big-image > .overlay {
  position: absolute;
  width: 100%;
  background-color: transparent;
  height: 100%;
  top: 0;
  transition: all ease-in-out 0.6s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transition: all ease-in-out 0.6s;
  -moz-transition: all ease-in-out 0.6s;
  -ms-transition: all ease-in-out 0.6s;
  -o-transition: all ease-in-out 0.6s;
}
.mini-blog-card:hover .mini-blog-image,
.blog-card-big:hover .blog-big-image {
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}
.mini-blog-card:hover .mini-blog-image > img,
.blog-card-big:hover .blog-big-image > img {
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
}
.mini-blog-card:hover .mini-blog-image > .overlay,
.blog-card-big:hover .blog-big-image > .overlay {
  background-color: #fca2119f;
}
/* image animation  */

.mini-blog-card {
  display: flex;
  align-items: self-start;
  flex-direction: row;
  gap: 20px;
  max-height: 317px;
  height: 100%;
  overflow: hidden;
  padding-top: 50px;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
}
.mini-blog-card:first-child {
  border-bottom: 1px solid #c2c2c2;
  padding-top: 0px;
  padding-bottom: 50px;
  margin-left: 10px;
}
.mini-blog-card > .mini-blog-image {
  flex: 0 0 397px;
}
.mini-blog-card > .mini-blog {
  flex: 1;
}
.mini-blog-image {
  max-width: 397px;
  width: 100%;
  height: 235px;
  display: inline-block;
}
.mini-blog-image > img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.mini-blog-card .short-title {
  margin-bottom: 0px;
  line-height: 60px;
  margin-top: -15px;
}
.mini-blog-card h3 {
  transition: all 0.5s ease-out;
  margin-bottom: 15px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.mini-blog-card:hover h3 {
  color: #fca311;
}

/* section  10 blog   */
/* section  11 FAQ Section   */
.faq-section {
  padding-top: 50px;
  padding-bottom: 100px;
  background-image: url("../Image/bg-all-section.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq-section .df-container {
  margin-top: 0px;
}

.faq-section .faq-header {
  margin-bottom: 50px;
}
.faq-header .short-text-fca {
  text-align: center;
  text-transform: uppercase;
}
.faq-header .df-title {
  text-align: center;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}
.faq-header .cir-short {
  top: 135px;
  left: 22%;
}

.faq-section .accordion-button span {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  max-width: 410px;
}
.faq-section .accordion-item {
  border: 1px solid #c2c2c2 !important;
  border-radius: 20px;
  margin: 15px 0px;
}
.faq-section .accordion {
  border: none !important;
}
.faq-section .accordion-button {
  padding: 20px 40px;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.accordion-button:not(.collapsed) {
  background: none;
  color: #fca311;
  border-bottom: none;
}

.faq-section .accordion-button::after {
  background-image: url("../Image/plus.svg");
  transition: all 0.5s;
}
.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("../Image/minus.svg");
}
.faq-section .accordion-button::after {
  transition: all 0.5s;
}

.faq-section .accordion-body {
  padding: 20px 40px;
  padding-top: 0px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: var(--df-short-text-color);
}

/* section  11 FAQ Section   */
/* section  12 Contact us     */

.contact-header {
  margin-bottom: 35px;
}
.contact-header .df-title {
  text-transform: capitalize;
}
.contact-header .cir-short {
  top: 130px;
  left: 0px;
}
.contact-img {
  position: relative;
  z-index: 30;
}
.contact-img .circle-image {
  position: absolute;
  bottom: 0;
  right: -102px;
  z-index: -1;
}

.contact-form {
  background-color: var(--bg-color-hero);
  padding: 40px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.contact-form .form-control {
  background-color: #fff;
  height: 60px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  color: #5d6c7c;
  padding: 0 30px;
  margin-bottom: 30px;
}
.contact-form textarea::placeholder,
.contact-form .form-control::placeholder {
  color: #5d6c7c;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  text-align: left;
}

.contact-form textarea {
  width: 100%;
  padding: 20px 30px;
  min-height: 320px;
  height: 330px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
}

/* section  12 Contact us     */
/* section  13 brand deals      */
.brand-deals {
  background-image: url("../Image/bg-all-section.png");
  padding: 80px 0px;
}
.brand-deals .df-container {
  margin: 0px auto;
  padding: 0px;
}
.brand-header {
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.brand-header h2 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 700;
  line-height: 37.2px;
  text-align: center;
  margin-bottom: 20px;
}
.brand-header p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  padding: 0px;
  margin-bottom: 50px;
}

.brand-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand-columns a {
  width: 20%;
  border-right: 1px solid #c2c2c2;
  padding: 0px 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-columns a:last-child {
  border-right: none;
}

.brand-columns img {
  display: inline-block;
  height: 56px;
  width: 100%;
  object-fit: contain;
}
/* section  13 brand deals      */

/*  Footer part  */
footer {
  background-image: url("../Image/footer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  padding-top: 114px;
  padding-bottom: 0px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}
.footer-top ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer-top a {
  color: var(--white-color);
  text-decoration: none;
  font-family: Poppins;
}

.footer-logo-and-des {
  max-width: 430px;
  width: 100%;
  max-height: 340px;
  height: 100%;
}

.quick-links {
  max-width: 170px;
  width: 100%;
  max-height: 320px;
}

.important-links {
  max-width: 239px;
  width: 100%;
  height: 100%;
}
.contact-info {
  max-width: 340px;
  width: 100%;
  height: 100%;
}

.footer-logo-and-des .footer-logo {
  width: 145px;
  height: 24px;
}

.footer-logo-and-des p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  margin-top: 38px;
}

.footer-nav-title {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.76px;
  text-align: left;
}
.footer-nav span.line {
  display: block;
  width: 36px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 18px;
}

.footer-nav .footer-link {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 48px;
  text-align: left;
  display: block;
  text-transform: capitalize;
  transition: all ease-in 0.2s;
  -webkit-transition: all ease-in 0.2s;
  -moz-transition: all ease-in 0.2s;
  -ms-transition: all ease-in 0.2s;
  -o-transition: all ease-in 0.2s;
}

.footer-nav .footer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 10px;
}

.contact-info .contact-info-item p > span {
  display: block;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  opacity: 80%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info .contact-info-item p > a,
.contact-info .contact-info-item p {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  padding: 0px;
  margin: 0px;
}
.contact-info-item:first-child {
  margin-top: 26px;
}
.contact-info-item {
  margin-bottom: 26px;
}
.contact-info .contact-info-item p > a.phone {
  font-family: Poppins;
  font-size: 26px;
  font-weight: 600;
  line-height: 38px;
  text-align: left;
}

.footer-middle {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.btn-send {
  background-color: var(--primary-color);
  color: var(--black-color);
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all ease-in 0.2s;
  font-size: 20px;
  -webkit-transition: all ease-in 0.2s;
  -moz-transition: all ease-in 0.2s;
  -ms-transition: all ease-in 0.2s;
  -o-transition: all ease-in 0.2s;
}

.footer-middle-form {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  max-width: 446px;
  width: 100%;
  padding: 7px 8px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background-color: #fff;
  transition: all ease-in 0.2s;
  -webkit-transition: all ease-in 0.2s;
  -moz-transition: all ease-in 0.2s;
  -ms-transition: all ease-in 0.2s;
  -o-transition: all ease-in 0.2s;
  color: #202020;
  font-size: 18px;
}
.footer-middle-form .input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
}
.footer-middle-form input {
  appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  display: inline-block;
}
.footer-middle-form input::placeholder {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  text-align: left;
  color: #5d6c7c;
}
.footer-middle-title {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.32px;
  text-align: center;
  color: #fff;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-social a {
  text-decoration: none;
}
.footer-social a i {
  color: #fff;
  font-size: 20px;
  transition: all ease-in 0.2s;
  -webkit-transition: all ease-in 0.2s;
  -moz-transition: all ease-in 0.2s;
  -ms-transition: all ease-in 0.2s;
  -o-transition: all ease-in 0.2s;
}
.footer-social a i:hover {
  color: var(--primary-color);
}
.bi-twitter-x {
  font-size: 15px !important;
}
.footer-bottom-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-bottom-text p {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}
.footer-bottom-text p > a {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  text-decoration: none;
  color: var(--primary-color);
}
.footer-bottom .df-container {
  margin-top: 30px;
}
.footer-bottom hr {
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 15%;
  border: none;
}
/*  Footer part  */

/* `````````` here Start Other page ```````` */

/** about page  */
.all-section-header {
  background-image: url("../Image/banner-other-page.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 370px;
}

.all-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  background-image: url("../Image/all-header-circle.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left;
}

.all-header-container h2 {
  font-family: Unbounded;
  font-size: 35px;
  font-weight: 700;
  line-height: 62px;
  text-align: center;
}
.all-header-container nav ol li a {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  text-decoration: none;
  color: white;
}

.all-header-container .breadcrumb-item.active {
  color: white;
  font-weight: 700;
}
.all-section {
  padding: 100px 0px;
}
.all-section.pad-0 {
  padding-bottom: 0px;
}

.all-section .df-container {
  padding: 0px;
  margin: 0px auto;
}

.header-center .cir-short {
  top: 130px;
  left: 28.3%;
}
.header-center .short-text-fca {
  max-width: 100%;
  text-transform: capitalize;
  text-align: center;
}
.header-center .df-title {
  max-width: 100%;
  text-align: center;
}

.tabing-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
  justify-content: center;
}
.tabing-group .tabing {
  text-decoration: none;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  color: #101d38;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 48px;
  border: 1px solid #fca311;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.tabing-group .tabing.active,
.tabing-group .tabing:hover {
  border-color: transparent;
  background-color: #fca311;
}

.para-details {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #585b6c;
}
.right-box-list {
  width: 100%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.267),
      rgba(255, 255, 255, 0.163)
    ),
    url("../Image/ab-right-box.png");
  min-height: 360px;
  height: auto;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 40px 30px;
  padding-bottom: 34px;
}

.ab-section-2 {
  padding: 100px 0px;
  padding-bottom: 0px;
}

.ab-title-h1 {
  font-family: Unbounded;
  font-size: 45px;
  font-weight: 700;
  line-height: 62px;
  text-align: left;
  color: #202020;
  margin-top: 35px;
  margin-bottom: 27px;
}

.df-para-1st {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  color: #202020;
}

.df-para-2nd {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  display: block;
  height: 90px;
  overflow: hidden;
  color: #585b6c;
}

.ab-new-title {
  font-family: Unbounded;
  font-size: 35px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
  color: #202020;
  margin-bottom: 20px;
  max-width: 300px;
}

.ab-new-para {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #585b6c;
  max-width: 510px;
  width: 100%;
  max-height: 418px;
  height: 100%;
  overflow: hidden;
}

.custom-tab-pane {
  display: none;
}

.custom-tab-pane.active {
  display: block;
}
/** about page  */
/** page-3  */

.ab-blog-header {
  max-width: 940px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.ab-blog-header .df-title {
  font-size: 45px;
  max-width: 100%;
}
.ab-blog-header .df-para,
.ab-blog-header .df-title {
  text-align: center;
}
.ab-blog-card {
  text-decoration: none;
}
.ab-blog-card img {
  width: 100%;
  max-width: 100%;
  height: 280px;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 20px;
}
.ab-blog-card h2 {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  height: 36px;
  overflow: hidden;
  line-height: 36px;
  text-align: left;
  color: #202020;
  margin-bottom: 10px;
}
.ab-blog-card p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #585b6c;
  height: 90px;
  overflow: hidden;
}
.ab-service-blog .ab-blog-card h2 {
  font-size: 35px;
  line-height: 48px;
  height: 46px;
}
.ab-service-blog .ab-blog-card img {
  min-height: 310px;
  height: 310px;
}
/** page-3  */
/** page-4  */
.f-new-box h2 {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  margin-top: 19px;
  margin-bottom: 16px;
  color: #202020;
}
.f-new-box img {
  max-width: 55px;
  max-height: 50px;
  margin-top: 8px;
}
.ft-para-new {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #585b6c;
  padding-bottom: 0px;
  height: 150px;
  overflow: hidden;
}

.all-section .section-6-header {
  margin-bottom: 55px;
}
/** page-4  */
/** page-5  */
.service-section-header .cir-short {
  top: 130px;
  left: 34.5%;
}
.blog-section-header .cir-short {
  top: 130px;
  left: 14.5%;
}
.blog-section-header .df-title,
.service-section-header .df-title {
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.blog-section-header,
.service-section-header {
  margin-bottom: 74px;
}

.ab-service-blog .ab-blog-card p,
.ab-blog-card-footer p {
  height: auto;
}
.ab-service-blog .ab-blog-card .ab-s-para {
  min-height: 150px;
  height: 150px;
  overflow: hidden;
}
/** page-5  */
/** page-6  */
.ab-big-blog-card {
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  color: #202020;
  display: block;
  margin-bottom: 20px;
}
.ab-big-blog-card img {
  height: 447px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 20px;
}
.ab-right-big-card-body .ab-date-author,
.ab-date-author,
.ab-blog-card-body .ab-date-author {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #fca311;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
  padding-bottom: 10px;
}
.ab-date-author {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #fca311;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
  padding-top: 20px;
}

.big-blog-title,
.ab-blog-card-body h2 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 700;
  line-height: 37.2px;
  text-align: left;
  margin-bottom: 20px;
}
.big-blog-title {
  margin-bottom: 0px;
}
.ab-big-para,
.ab-blog-card-body .ab-big-para {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #585b6c;
  height: 120px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ab-right-big-card {
  text-decoration: none;
  color: #202020;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
  gap: 25px;
  margin-bottom: 10px;
}

.ab-right-big-card:last-child {
  margin-bottom: 0px;
}
.ab-right-big-card img {
  width: 122px;
  height: 122px;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.ab-right-big-card-body h4 {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}
.ab-right-big-card-body .ab-date-author {
  font-family: Unbounded;
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding-bottom: 10px;
}
.ab-right-big-card-body {
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.ab-big-blog-right h3 {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 700;
  line-height: auto;
  text-align: left;
  color: #202020;
  padding-bottom: 30px;
  margin-top: -5px;
}
.ab-blog-details-img {
  margin: 20px 0px;
  width: 100%;
  max-width: 100%;
}

.ab-blog-card.add-new-item img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0px;
  height: 337px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.ab-blog-card.add-new-item h2 {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;

  height: 72px;
}
/** page-6  */
/** page-7  */
.contact-left-box {
  background: linear-gradient(
      rgba(255, 255, 255, 0.267),
      rgba(255, 255, 255, 0.163)
    ),
    url("../Image/ab-right-box.png");
  min-height: 360px;
  width: 100%;
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 60px 50px;
}

.contact-left-box h6 {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #101d38;
}

.cb-single-box {
  display: flex;
  align-items: start;
  gap: 20px;
}

.cb-single-box img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.cb-single-box p span {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  display: block;
  margin-bottom: 8px;
  color: #202020;
}
.cb-single-box p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #585b6c;
  padding: 0px;
  margin: 0px;
}
.list-of-address {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-top: 30px;
}
.cb-em-map {
  width: 100%;
  height: 620px;
  background-color: #f4f4f4;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  margin-top: 80px;
}
.cb-em-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/** page-7  */
/** page-8  */
.ab-case-study .case-study-header .cir-short {
  top: 130px;
  left: 35.5%;
}
.ab-case-study .case-study-header .df-title {
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.case-study-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.ab-cs-title-of-details {
  font-family: Unbounded;
  font-size: 35px;
  font-weight: 700;
  line-height: 46px;
  text-align: left;
  color: #202020;
  text-wrap: pretty;
  margin-top: 20px;
  margin-bottom: 20px;
}

.case-study-details .left-site img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 20px;
}
.case-study-details .right-site .cs-para,
.case-study-details .left-site .cs-para {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #585b6c;
  margin: 0px;
}
.cs-title-right {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 46px;
  text-align: left;
  color: #202020;
  margin-top: 10px;
  margin-bottom: 10px;
}
/** page-8  */
/** page-9  */
.term-container {
  max-width: 1340px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.terms-condition-header {
  margin-bottom: 80px;
}
.terms-condition-header .short-text-fca {
  max-width: 100%;
  width: 100%;
  text-align: center;
  text-transform: capitalize;
}
.terms-condition-header .df-title {
  max-width: 100%;
  text-align: center;
}
.terms-condition-header .cir-short {
  top: 130px;
  left: 17.5%;
}

.terms-and-condition-box h3 {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  color: #202020;
  margin-top: 0px;
  margin-bottom: 18px;
}
.terms-and-condition-box ul li {
  margin-bottom: 19px;
}
.terms-and-condition-box ul li,
.terms-and-condition-box p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #585b6c;
  padding-bottom: 10px;
}
/** page-9  */
/** page-10  */
.ab-list-of-about {
  list-style: disc;
  color: #585b6c;
  margin: 10px 0px;
}
.ab-list-of-about li {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #585b6c;
}

.about-header .short-text-fca {
  max-width: 100%;
  width: 100%;
  text-align: left;
  text-transform: capitalize;
}
.about-header .df-title {
  max-width: 100%;
  text-align: left;
}
.about-header .cir-short {
  top: 134px;
  left: -5px;
}

.ab-about-page .left-site-image > img {
  max-width: 620px;
  width: 100%;
  height: 705px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.about-second-section {
  background-image: url("../Image/about-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about-second-section .section-6-header .cir-short {
  left: 33.8%;
}
/** page-10  */
/* `````````` here end Other page ```````` */

/* animation  */
.about-left-2nd-titile {
  color: #202020;
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  margin-bottom: 15px;
}
.about-left-2nd-feature .df-para.feature {
  margin-bottom: 0px;
  margin-top: 15px;
}
.df-para.feature p {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.about-left-2nd-feature .df-para-2nd {
  margin-top: 10px;
  height: 59px;
}

.about-2nd-price-left button {
  margin-top: 30px;
}

#ab-3-left-image img {
  width: 100%;
  object-fit: cover;

  height: 875px;
  object-position: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.df-title.ab {
  max-width: 800px;
}

.faq-section.active {
  background-color: #fff;
  background-image: none;
  padding-bottom: 0px;
}
/* animation  */
.title-top-modal {
  font-family: Unbounded;
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  text-align: left;
}

.custom-modal .modal-lg {
  max-width: 580px;
  width: 100%;
}
.custom-modal .modal-content {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 40px 50px;
  padding-bottom: 0px;
}

.header-modal .df-title {
  max-width: 100%;
  text-align: center;
}
.header-modal .short-text-fca {
  max-width: 100%;
  text-align: left;
}

.header-modal .cir-short {
  top: 130px;
  left: -5px;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.custom-form input {
  max-width: 100%;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border-color: #dddd;
  border: 1px solid #e6e6e6;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.custom-form input::placeholder {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #5d6c7c;
}

/*  new Css  */
.price-header .short-text-fca {
  line-height: 10px;
}
.price-header .df-title {
  max-width: 100%;
}
.price-header {
  margin-bottom: 55px;
}
.price-header .price-para {
  max-width: 80%;
  margin: 0 auto;
  margin-top: -10px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #585b6c;
  text-align: center;
}
.price-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.price-card {
  max-width: 520px;
  width: 100%;
  background-color: transparent;
  background-image: url("../Image/price-card-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  border-radius: 26px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -ms-border-radius: 26px;
  -o-border-radius: 26px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.price-card h2 {
  font-family: Unbounded;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.price-card .price-tag {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
}
.price-card .price-tag > span {
  font-family: Unbounded;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
}
.price-card .price-value {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
  gap: 30px;
}
.price-card .price-value li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}

.price-card .btn-price {
  padding: 16px 40px;
  background: white;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  width: 100%;
  margin-top: 30px;
  color: #000;
  border: 2px solid #101d38;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.price-card.active .btn-price {
  background-color: #fca311;
  border-color: transparent;
}

.price-card:hover .btn-price,
.price-card .btn-price:hover {
  background-color: #fca311;
  border-color: transparent;
}

.price-card.active,
.price-card:hover {
  background-color: #101d38;
  color: white;
}
.price-card:hover {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}
/*  new Css  */
.close-button-modal {
  position: absolute;
  top: -10px;
  right: -10px;
}
.close-button-modal > button {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--black-color);
  background: #fca311;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
